Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
IBM SDE off Campus Hiring 2022 | 2021 | 2020 | 2019 Batch | Salary 7LPA+ Country/Region:IN
State:MULTIPLE
City:Multiple Cities
Category:Software Development & Support
Required Education:Bachelor's Degree
Position Type:Entry Level
Employment Type:Full-Time
Contract Type:Regular
Company:(0063) IBM India Private Limited
Req ID:585772BR
Click here to apply
https://krb-sjobs.brassring.com/TGnewUI/Search/home/HomeWithPreLoad?PageType=JobDetails&partnerid=26059&siteid=5016&jobid=614910&codes=IBM_CareerWebSite#jobDetails=614910_5016
State:MULTIPLE
City:Multiple Cities
Category:Software Development & Support
Required Education:Bachelor's Degree
Position Type:Entry Level
Employment Type:Full-Time
Contract Type:Regular
Company:(0063) IBM India Private Limited
Req ID:585772BR
Click here to apply
https://krb-sjobs.brassring.com/TGnewUI/Search/home/HomeWithPreLoad?PageType=JobDetails&partnerid=26059&siteid=5016&jobid=614910&codes=IBM_CareerWebSite#jobDetails=614910_5016
Brassring
Software Developer - IBM Careers - Job Details
Job Details: You will be part of Squad which will be co-located in Bangalore or HyderabadYou will be involved in analysis/p
๐2
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