Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Lolly.com is Hiring !!
Role: Python Developer
Expected CTC: 6-15 LPA
Apply here: https://linkedin.com/jobs/view/3796395323/
Role: Python Developer
Expected CTC: 6-15 LPA
Apply here: https://linkedin.com/jobs/view/3796395323/
Linkedin
Lolly.com hiring Python Developer in Bengaluru, Karnataka, India | LinkedIn
Posted 2:30:47 PM. CTC 6-15 LPACompany DescriptionLolly.com is a unified Influencer Marketplace that powers brandsโฆSee this and similar jobs on LinkedIn.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company - HITACHI
Role - R&D Engineer
Batch - 2023 , 2024
Exp CTC - 15 lpa
Location - Bengaluru
Link - https://www.hitachienergy.com/careers/open-jobs/details/JID3-60485
Role - R&D Engineer
Batch - 2023 , 2024
Exp CTC - 15 lpa
Location - Bengaluru
Link - https://www.hitachienergy.com/careers/open-jobs/details/JID3-60485
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Medpace, Inc. is Hiring !!
Role: Software Engineer
Experience: Fresher
Apply here: https://careers.medpace.com/jobs/8753
Role: Software Engineer
Experience: Fresher
Apply here: https://careers.medpace.com/jobs/8753
Software/Research Engineer - Core Laboratory in Navi Mumbai, India | Medpace, Inc.
Medpace, Inc. is hiring a Software/Research Engineer - Core Laboratory in Navi Mumbai, India. Review all of the job details and apply today!
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Postman is Hiring !!
Role: SDE Intern for 6 Months
Batch: 2024
Expected Stipend: 50k per month
Apply here- https://www.postman.com/company/careers/software-engineer-intern-5842012003/
Role: SDE Intern for 6 Months
Batch: 2024
Expected Stipend: 50k per month
Apply here- https://www.postman.com/company/careers/software-engineer-intern-5842012003/
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Airblack is hiring SDE Interns
For 2024/2023 Grads
Duration: 6 months
https://www.linkedin.com/posts/suyash-agrawal-25204a131_hiring-hiringdevelopers-fullstackdevelopment-activity-7150420023948234752-z3SE?utm_source=share&utm_medium=member_android
For 2024/2023 Grads
Duration: 6 months
https://www.linkedin.com/posts/suyash-agrawal-25204a131_hiring-hiringdevelopers-fullstackdevelopment-activity-7150420023948234752-z3SE?utm_source=share&utm_medium=member_android
Linkedin
Suyash Agrawal on LinkedIn: #hiring #hiringdevelopers #fullstackdevelopment #developercommunityโฆ | 133 comments
I am looking to hire full-stack development interns for a few projects. You will get to work on cool features using the latest technologies for a community ofโฆ | 133 comments on LinkedIn
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company - IntelliFill Tech Pvt Ltd
Role - Software Engineer Internship
Batch - 2023/2024/2025
Apply Link - https://unstop.com/o/o0V4HyK?lb=cdmoBrn&utm_medium=Share&utm_source=shortUrl
Role - Software Engineer Internship
Batch - 2023/2024/2025
Apply Link - https://unstop.com/o/o0V4HyK?lb=cdmoBrn&utm_medium=Share&utm_source=shortUrl
Unstop
Software Engineer Intern by IntelliFill Tech Pvt Ltd! | 2024 // Unstop
Software Engineer Intern a jobs by IntelliFill Tech Pvt Ltd open to All Apply online before 2024-01-19 20:00:00! | 2024
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
vector<int> solve(vector<int>& mem, vector<vector<int>>& queries) {
map<int, pair<int, int>> alloc;
int id = 1;
vector<int> res;
for (auto& q : queries) {
if (q[0] == 0) {
int x = q[1];
int start = -1;
int count = 0;
for (int i = 0; i < mem.size(); ++i) {
if (mem[i] == 0) {
if (start == -1 && i % 8 == 0) {
start = i;
}
if (start != -1) {
++count;
}
if (count == x) {
break;
}
} else {
start = -1;
count = 0;
}
}
if (count == x) {
fill(mem.begin() + start, mem.begin() + start + x, 1);
alloc[start] = {id, x};
res.push_back(start);
++id;
} else {
res.push_back(-1);
}
} else {
int eraseId = q[1];
int length = -1;
for(auto it = alloc.begin(); it != alloc.end(); ++it) {
if(it->second.first == eraseId) {
fill(mem.begin() + it->first, mem.begin() + it->first + it->second.second, 0);
length = it->second.second;
alloc.erase(it);
break;
}
}
res.push_back(length);
}
}
return res;
}
Tradedsk โ
map<int, pair<int, int>> alloc;
int id = 1;
vector<int> res;
for (auto& q : queries) {
if (q[0] == 0) {
int x = q[1];
int start = -1;
int count = 0;
for (int i = 0; i < mem.size(); ++i) {
if (mem[i] == 0) {
if (start == -1 && i % 8 == 0) {
start = i;
}
if (start != -1) {
++count;
}
if (count == x) {
break;
}
} else {
start = -1;
count = 0;
}
}
if (count == x) {
fill(mem.begin() + start, mem.begin() + start + x, 1);
alloc[start] = {id, x};
res.push_back(start);
++id;
} else {
res.push_back(-1);
}
} else {
int eraseId = q[1];
int length = -1;
for(auto it = alloc.begin(); it != alloc.end(); ++it) {
if(it->second.first == eraseId) {
fill(mem.begin() + it->first, mem.begin() + it->first + it->second.second, 0);
length = it->second.second;
alloc.erase(it);
break;
}
}
res.push_back(length);
}
}
return res;
}
Tradedsk โ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Directi - DevOps Intern - (Campus 2023)
https://jobs.lever.co/directi/27a4abcd-0ef8-4049-beb4-e0e20fbfcbcf
https://jobs.lever.co/directi/27a4abcd-0ef8-4049-beb4-e0e20fbfcbcf
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Sony Research India
Role: Software Development Intern
Batch eligible: 2024 and 2025 passouts
Apply: https://www.linkedin.com/jobs/view/3802584501
Role: Software Development Intern
Batch eligible: 2024 and 2025 passouts
Apply: https://www.linkedin.com/jobs/view/3802584501
Extraordinary Substrings โ
IBMโ
Python 3
Python 3
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
โ๏ธPivotree Off Campus Drive 2024 Hiring Associate Data Analyst - Fresher | 4-8 LPA*โ๏ธ
๐จโ๐ปJob Role : Associate Data Analyst - Fresher
๐Qualification : B.E/B.Tech
๐Experience : Fresher
๐ฐPackage : 4-8 LPA*
โญ๏ธ Apply Fast :
https://globalus232.dayforcehcm.com/CandidatePortal/en-ca/pivotree/Posting/View/2552
๐จโ๐ปJob Role : Associate Data Analyst - Fresher
๐Qualification : B.E/B.Tech
๐Experience : Fresher
๐ฐPackage : 4-8 LPA*
โญ๏ธ Apply Fast :
https://globalus232.dayforcehcm.com/CandidatePortal/en-ca/pivotree/Posting/View/2552
Dayforcehcm
Job opportunity at Pivotree - Associate Content Analyst - Fresher
Come join our growing team!
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Campus Hiring Alert!
Our Spreading Team is looking for enthusiastic MBA (Finance) freshers to join our team. Campus placement coordinators are requested to reach out to me at alka.sinha@acuitykp.com for more information.
Our Spreading Team is looking for enthusiastic MBA (Finance) freshers to join our team. Campus placement coordinators are requested to reach out to me at alka.sinha@acuitykp.com for more information.