๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€
9.62K subscribers
5.61K photos
3 videos
95 files
10.6K links
๐ŸšฉMain Group - @SuperExams
๐Ÿ“Job Updates - @FresherEarth

๐Ÿ”ฐAuthentic Coding Solutions(with Outputs)
โš ๏ธDaily Job Updates
โš ๏ธHackathon Updates & Solutions

Buy ads: https://telega.io/c/cs_algo
Download Telegram
โ—๏ธGreat news for Programmersโ—๏ธ

We have created a separate channel to help you guys prepare for the coding interviews.
We will provide practice questions with solutions and study material to crack coding interviews

Join fast
๐Ÿ‘‡๐Ÿ‘‡
@crackingthecodinginterviews
โ—๏ธHCL Careers for Freshers 2022 : Hiring as Graduate Trainee With 6 LPAโ—๏ธ

๐Ÿ‘จโ€๐Ÿ’ป Designation : Graduate Trainee
๐ŸŽ– Batch : 2020/2021/2022
๐ŸŽ“ Eligibility : B.E/B.Tech/M.E/M.Tech/MBA/B.Com
๐Ÿ’ฐ CTC : Rs. 4.6-6LPA

https://freshers.hcltech.com/

โœ… Share with your friends
โ—๏ธAxis Bank Recruitment 2022 : Hiring for Freshers as Assistant Manager with 4.54 LPAโ—๏ธ

๐Ÿ‘จโ€๐Ÿ’ป Designation : Assistant Manager
๐ŸŽ“ Eligibility : Any Degree
๐ŸŽ– Batch : 2020/2021/2022
๐Ÿ’ฐ CTC : Rs. 4.54LPA

https://axisbankybp.online-ap1.com/index.html

โœ… Share with your friends
โ—๏ธReznet Off Campus Drive 2022 : Hiring for Freshers as Rail Signalling Engineerโ—๏ธ

๐Ÿ‘จโ€๐Ÿ’ป Job Role : Rail Signalling Engineer
๐ŸŽ“ Qualification : B.E/B.Tech
๐ŸŽ– Batch : 2022
๐Ÿ’ฐ Salary : 3 LPA*

https://www.firstnaukri.com/careers/customised/landingpage/reznet/index.html

โœ… Share with your friends
๐Ÿ‘1
class Solution {
private:
bool isvalidMatching(string & word, string & pattern) {
unordered_map<char,char>mpp;
unordered_set<char>lookup;
for(int i=0;i<word.size();i++){
if(mpp.find(word[i])!=mpp.end()){
if(mpp[word[i]]!=pattern[i]) return false;
}else{
if(lookup.count(pattern[i])) return false;
mpp[word[i]]=pattern[i];
lookup.insert(pattern[i]);
}
}
return true;


}
public:
vector<string> findAndReplacePattern(vector<string>& words, string pattern) {
vector<string>ans;
for(auto &word:words){
if(isvalidMatching(word,pattern)){
ans.push_back(word);
}
}
return ans;
}
};

Find and Replace Pattern โœ…
(C++)
๐Ÿ‘1