Infosys SP and DSE 3pm
Python 3โ
Python 3โ
Infosys SP and DSE 3pm
Entropy and dominant
Python 3
Entropy and dominant
Python 3
๐1
โ๏ธ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
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
โ๏ธCisco Off Campus Driveโ๏ธ
๐ Batch - 2023 & 2024
๐ Link - jobs.cisco.com/jobs/ProjectDetail/Software-Engineer-Quality-and-Operations-Intern-India-UHR/1375533
๐ Batch - 2023 & 2024
๐ Link - jobs.cisco.com/jobs/ProjectDetail/Software-Engineer-Quality-and-Operations-Intern-India-UHR/1375533
๐1
โ๏ธ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
๐จโ๐ป 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
๐จโ๐ป 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
Online-Ap1
Axis Bank | Young Bankers Program
โ๏ธ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
๐จโ๐ป 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
๐KPMG Off Campus Recruitment 2022 : Hiring for Freshers as Analyst
*Designation: Analyst
*Eligibility: B.E/B.Tech
*Batch: 2020/2021/2022
*Job Location: Bangalore
*Salary CTC: 3 LPA*
https://aa046.taleo.net/careersection/ex/jobdetail.ftl?job=59282
โ Share with your friends
*Designation: Analyst
*Eligibility: B.E/B.Tech
*Batch: 2020/2021/2022
*Job Location: Bangalore
*Salary CTC: 3 LPA*
https://aa046.taleo.net/careersection/ex/jobdetail.ftl?job=59282
โ Share with your friends
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ pinned ยซhttps://leetcode.com/problems/find-and-replace-pattern/description/ยป
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++)
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
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ pinned ยซ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()){ โฆยป
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Cognizant Off-campus PWD drive 2022
IT Programmer Analyst Trainee Freshers UG/PG Across India|| 4LPA+โฆ
Batch - 2020,2021,2022
โ Apply Now: https://app.joinsuperset.com/join/#/signup/student/jobprofiles/e444577d-20f2-4307-8b52-fbe4c8230adf
IT Programmer Analyst Trainee Freshers UG/PG Across India|| 4LPA+โฆ
Batch - 2020,2021,2022
โ Apply Now: https://app.joinsuperset.com/join/#/signup/student/jobprofiles/e444577d-20f2-4307-8b52-fbe4c8230adf
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
TO THE NEW is hiring.
Role: There are many roles, checkout below form.
Batch eligible: 2021 and 2022 passouts
Form Link: https://bit.ly/3vrBjlG
Role: There are many roles, checkout below form.
Batch eligible: 2021 and 2022 passouts
Form Link: https://bit.ly/3vrBjlG
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Dear All,
We have openings for B. Tech / M. Tech and MCA candidates on the following profile at upGrad:
*Position* - Technical Trainer & Mentor
*Skill Set* - JAVA, Data Structures, HTML, CSS & JavaScript,React-JS, MVC, SpringBoot, Rest APIs, JAVA, Data Structures, HTML & CSS, Basics of JavaScript
*Location* - Punjab
*JD* - https://bit.ly/3PYrkvZ
Interested Candidate please contact on details mentioned below or send your resume on supply@upgrad.com
Mr. Shamneesh Sharma - Program Manager - upGrad - +91 86793 34000 - shamneesh.sharma@upgrad.com
Mr. Chetan Sharma - Program Manager - upGrad - +91 7018443448 - chetan2.sharma@upgrad.com
We have openings for B. Tech / M. Tech and MCA candidates on the following profile at upGrad:
*Position* - Technical Trainer & Mentor
*Skill Set* - JAVA, Data Structures, HTML, CSS & JavaScript,React-JS, MVC, SpringBoot, Rest APIs, JAVA, Data Structures, HTML & CSS, Basics of JavaScript
*Location* - Punjab
*JD* - https://bit.ly/3PYrkvZ
Interested Candidate please contact on details mentioned below or send your resume on supply@upgrad.com
Mr. Shamneesh Sharma - Program Manager - upGrad - +91 86793 34000 - shamneesh.sharma@upgrad.com
Mr. Chetan Sharma - Program Manager - upGrad - +91 7018443448 - chetan2.sharma@upgrad.com
Google Docs
Job Description - Mentor & Technical Trainer.docx
Mentor and Technical Trainer โ upGrad Campus Punjab/NCR/Rajasthan โ Full Time About Us upGrad Campus is a new college focused subsidiary under upGrad based out of Bangalore. The flagship product of upGrad Campus is providing a complete platform with higherโฆ
๐1
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ pinned ยซhttps://leetcode.com/problems/word-subsets/description/ยป
// Word Subset
class Solution:
def wordSubsets(self, words1: List[str], words2: List[str]) -> List[str]:
ans = set(words1)
letters = {}
for i in words2:
for j in i:
count = i.count(j)
if j not in letters or count > letters[j]:
letters[j] = count
for i in words1:
for j in letters:
if i.count(j) < letters[j]:
ans.remove(i)
break
return list(ans)
Python 3โ
class Solution:
def wordSubsets(self, words1: List[str], words2: List[str]) -> List[str]:
ans = set(words1)
letters = {}
for i in words2:
for j in i:
count = i.count(j)
if j not in letters or count > letters[j]:
letters[j] = count
for i in words1:
for j in letters:
if i.count(j) < letters[j]:
ans.remove(i)
break
return list(ans)
Python 3โ
๐2