Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Numeus is Hiring !!
Role: Quantitative researcher
Batch- 2023 and before
๐Link- https://boards.eu.greenhouse.io/numus/jobs/4083711101
Role: Quantitative researcher
Batch- 2023 and before
๐Link- https://boards.eu.greenhouse.io/numus/jobs/4083711101
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Alds
Role: Frontend Developer
Batch eligible: 2022 and 2023 passouts
Apply: https://bit.ly/3I6Gpd1
Role: Frontend Developer
Batch eligible: 2022 and 2023 passouts
Apply: https://bit.ly/3I6Gpd1
AlmaBetter
AlmaBetter - Fast Forward Your Career in Tech
Launch your career in tech with high impact courses. Earn โน5 - 25 LPA at leading companies. Pay us after you land your dream job.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Goldman Sachs
Role: Software Engineer
Batch eligible: 2022 and 2023 passouts
Apply: https://hdpc.fa.us2.oraclecloud.com/hcmUI/CandidateExperience/en/sites/LateralHiring/job/121877/?utm_medium=jobshare
Role: Software Engineer
Batch eligible: 2022 and 2023 passouts
Apply: https://hdpc.fa.us2.oraclecloud.com/hcmUI/CandidateExperience/en/sites/LateralHiring/job/121877/?utm_medium=jobshare
Candidate Experience Site - Lateral
Controllers - Software Engineering - Vice President - Bengaluru
Our team of engineers builds solutions to the most complex problems. We develop cutting-edge software and platforms that form the core of our key business and enable transactions to move in milliseconds. We provide real-time access to critical deal informationโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
We are hiring at Speqto Technologies Pvt. Ltd.
We are looking for:-
1) PHP Developer Fresher
2) Python Developer Fresher
3) Node JS Developer Fresher
4) React Js Developer Fresher
Job Location: Noida, Sec. 62 (work from office only).
Interested candidates can drop their updated CVs at dimpy.dutt@speqto.com
We are looking for:-
1) PHP Developer Fresher
2) Python Developer Fresher
3) Node JS Developer Fresher
4) React Js Developer Fresher
Job Location: Noida, Sec. 62 (work from office only).
Interested candidates can drop their updated CVs at dimpy.dutt@speqto.com
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Invesco is Hiring !!
Role: Graduate Engineer Trainee
Salary: 4-5 LPA
๐Apply here: https://invesco.wd1.myworkdayjobs.com/en-US/intelliflo/job/Hyderabad-Telangana/Graduate-Engineer-Trainee_R-5624
Role: Graduate Engineer Trainee
Salary: 4-5 LPA
๐Apply here: https://invesco.wd1.myworkdayjobs.com/en-US/intelliflo/job/Hyderabad-Telangana/Graduate-Engineer-Trainee_R-5624
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Scifor Technologies is Hiring !!
Role: Frontend Development Intern - Remote
Batch: 2024, 2025
Stipend: 14K - 16K per month
๐Apply here: https://linkedin.com/jobs/view/3833634651/
Role: Frontend Development Intern - Remote
Batch: 2024, 2025
Stipend: 14K - 16K per month
๐Apply here: https://linkedin.com/jobs/view/3833634651/
Linkedin
1,000+ Development Intern jobs in India (195 new)
Todayโs top 1,000+ Development Intern jobs in India. Leverage your professional network, and get hired. New Development Intern jobs added daily.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Thomson Reuters Hiring Software Engineer Intern
This is a great opportunity for you guys! Batch : 2023, 2024
https://careers.thomsonreuters.com/us/en/job/THTTRUUSJREQ176395EXTERNALENUS/Interns-for-JWB?
This is a great opportunity for you guys! Batch : 2023, 2024
https://careers.thomsonreuters.com/us/en/job/THTTRUUSJREQ176395EXTERNALENUS/Interns-for-JWB?
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐NTT is Hiring !!
Role: Graduate Trainee Engineer
Expected Salary:4-6 LPA
๐Apply here: https://careers.services.global.ntt/global/en/job/NTT1GLOBALR110031EXTERNALENGLOBAL/Graduate-Trainee-Engineer
Role: Graduate Trainee Engineer
Expected Salary:4-6 LPA
๐Apply here: https://careers.services.global.ntt/global/en/job/NTT1GLOBALR110031EXTERNALENGLOBAL/Graduate-Trainee-Engineer
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Flecks Labs
Role: SDE 1
Batch eligible: 2023 and earlier grads
Apply: https://forms.office.com/pages/responsepage.aspx?id=H4vZn2lJrEutSCJa_YTdyFeV_mavobpEgP5Ccl59pmxUN09RRDg0OVlXNzg1Sk5NSFBIV1lGSkFFTy4u
Role: SDE 1
Batch eligible: 2023 and earlier grads
Apply: https://forms.office.com/pages/responsepage.aspx?id=H4vZn2lJrEutSCJa_YTdyFeV_mavobpEgP5Ccl59pmxUN09RRDg0OVlXNzg1Sk5NSFBIV1lGSkFFTy4u
Office
Please fill out this form
๐1
def sum_of_factors(num):
factors_sum = 0
i = 1
while i * i <= num:
if num % i == 0:
factors_sum += i
if i != num // i:
factors_sum += num // i
i += 1
return factors_sum
All test cases passing
//Max Subset Sum
factors_sum = 0
i = 1
while i * i <= num:
if num % i == 0:
factors_sum += i
if i != num // i:
factors_sum += num // i
i += 1
return factors_sum
All test cases passing
//Max Subset Sum
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
#hiring #dataengineer #lakehouse | Nikhil Mittal | 279 comments
Hi everyone - I am looking for two Data Engineers with an experience of 1-2 years (2021, 2022 & 2023 graduates only) to work on Lakehouse Architecture basedโฆ | 279 comments on LinkedIn
vector<int> playOfGlasses(int c1, int w1, int c2, int w2, int c3, int w3) {
// code here
int t;
for (int i = 0; i < 3; ++i) {
t = min(w1, c2 - w2);
w1 -= t;
w2 += t;
t = min(w2, c3 - w3);
w2 -= t;
w3 += t;
t = min(w3, c1 - w1);
w3 -= t;
w1 += t;
}
t = min(w1, c2 - w2);
w1 -= t;
w2 += t;
return {w1, w2, w3};
}
Play of glasses
GFGโ
// code here
int t;
for (int i = 0; i < 3; ++i) {
t = min(w1, c2 - w2);
w1 -= t;
w2 += t;
t = min(w2, c3 - w3);
w2 -= t;
w3 += t;
t = min(w3, c1 - w1);
w3 -= t;
w1 += t;
}
t = min(w1, c2 - w2);
w1 -= t;
w2 += t;
return {w1, w2, w3};
}
Play of glasses
GFGโ
๐3
class Solution {
public:
int maximizeTheFuel(int n, int a, int b) {
int m = 0;
for (int p = 0; p <= n; p += a) {
int r = n - p;
int d = min(r / b, b);
m = max(m, p + d);
}
for (int d = 0; d <= n; d += b) {
int r = n - d;
int p = min(r / a, a);
m = max(m, p + d);
}
for (int p = 0; p <= n; p += a) {
for (int d = 0; d <= n - p; d += b) {
int r = n - p - d;
int h = (p + d) / 2;
int mh = min(h, r);
m = max(m, p + d + mh);
}
}
return m;
}
};
Gfg โ
public:
int maximizeTheFuel(int n, int a, int b) {
int m = 0;
for (int p = 0; p <= n; p += a) {
int r = n - p;
int d = min(r / b, b);
m = max(m, p + d);
}
for (int d = 0; d <= n; d += b) {
int r = n - d;
int p = min(r / a, a);
m = max(m, p + d);
}
for (int p = 0; p <= n; p += a) {
for (int d = 0; d <= n - p; d += b) {
int r = n - p - d;
int h = (p + d) / 2;
int mh = min(h, r);
m = max(m, p + d + mh);
}
}
return m;
}
};
Gfg โ
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Hello Connections!!
Greetings from Gammastack
We are hiring!!!
#Devopsengineer for Indore location.
Experience- Fresher to 2 years
Kindly share resume at nmawle@gammastack.com
Greetings from Gammastack
We are hiring!!!
#Devopsengineer for Indore location.
Experience- Fresher to 2 years
Kindly share resume at nmawle@gammastack.com
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
FresherOpportunityAlert
IRIS Software Group is recruiting #Freshers for UK Payroll Processing roles.
Exp : 0 - 1 years
Location : Chennai(Nungambakkam)
Walkin Time and Venue
24 February , 11.00 AM - 3.00 PM
IRIS KPO Resourcing India Private Limited, 5th Floor, Pottipati Plaza, 77, Nungambakkam High Rd, Chennai, Tamil Nadu 600034
Contact - Narmadha N
Education : B.Com / BBA / BCA / M.Com / MBA candidates, who have passed out from 2021,2022,& 2023 are only eligible.
Shift Timings : 2.00 PM to 10.00 PM
IRIS Software Group is recruiting #Freshers for UK Payroll Processing roles.
Exp : 0 - 1 years
Location : Chennai(Nungambakkam)
Walkin Time and Venue
24 February , 11.00 AM - 3.00 PM
IRIS KPO Resourcing India Private Limited, 5th Floor, Pottipati Plaza, 77, Nungambakkam High Rd, Chennai, Tamil Nadu 600034
Contact - Narmadha N
Education : B.Com / BBA / BCA / M.Com / MBA candidates, who have passed out from 2021,2022,& 2023 are only eligible.
Shift Timings : 2.00 PM to 10.00 PM
๐1