Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐ADP Private Limited is Hiring !!
Role: Associate Application Developer
Experience: Experience: 0 - 3 Year(s)
๐Apply here: https://unstop.com/jobs/associate-application-developer-adp-private-limited-932739?utm_source=DotAware&utm_medium=Affiliates&utm_campaign=ADPPL15032024&ref=DAW
Role: Associate Application Developer
Experience: Experience: 0 - 3 Year(s)
๐Apply here: https://unstop.com/jobs/associate-application-developer-adp-private-limited-932739?utm_source=DotAware&utm_medium=Affiliates&utm_campaign=ADPPL15032024&ref=DAW
Unstop
Associate Application Developer by ADP Private Limited! | 2024 // Unstop
Associate Application Developer a jobs by ADP Private Limited open to Engineering Students, Undergraduate, Postgraduate Apply online before 2024-03-29 00:00:00! | 2024
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
ZS Associates Campus Beats 2024:
Includes PPO Opportunity
Process of this drive:
Live Webinar Sessions: March 2024
ZS Case Challenge: April 2024
Panel Interview: May 2024
Last Date to Register: 17th March
Apply Link: https://www.zs.com/careers/campus-beats
Includes PPO Opportunity
Process of this drive:
Live Webinar Sessions: March 2024
ZS Case Challenge: April 2024
Panel Interview: May 2024
Last Date to Register: 17th March
Apply Link: https://www.zs.com/careers/campus-beats
Zs
Campus BeatsโIndia | Campus engagement program | ZS
ZSโs campus engagement program in India. We identify and engage students from dozens of top schools through a range of learning activities and case challenges.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Airtable
Airtable | Everyone's app platform
Airtable is a low-code platform for building collaborative apps. Customize your workflow, collaborate, and achieve ambitious outcomes. Get started for free.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Altair
๐ Job Title: Software Development Engineer
๐ Location: Pune
โ๐ป YOE: 0-3 years
โก๏ธ Apply: https://phh.tbe.taleo.net/phh01/ats/careers/v2/viewRequisition?org=ALTAENGI&cws=39&rid=45313
Please do share in your college grps and in case you are applying please react on this post:) ๐โค๏ธ
๐ Job Title: Software Development Engineer
๐ Location: Pune
โ๐ป YOE: 0-3 years
โก๏ธ Apply: https://phh.tbe.taleo.net/phh01/ats/careers/v2/viewRequisition?org=ALTAENGI&cws=39&rid=45313
Please do share in your college grps and in case you are applying please react on this post:) ๐โค๏ธ
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Composio dev is hiring for Software Engineering Intern
Stipend: 10k-20k per month
๐Apply here: https://wellfound.com/jobs/2949042-software-engineering-intern-python
๐Boldd is hiring for DSA tutor
Stipend: 10k-20k per month
๐Apply here: https://wellfound.com/jobs/2955489-dsa-tutor
Stipend: 10k-20k per month
๐Apply here: https://wellfound.com/jobs/2949042-software-engineering-intern-python
๐Boldd is hiring for DSA tutor
Stipend: 10k-20k per month
๐Apply here: https://wellfound.com/jobs/2955489-dsa-tutor
def find(parent, i):
if parent[i] == i:
return i
parent[i] = find(parent, parent[i])
return parent[i]
def union(parent, size, i, j):
root_i = find(parent, i)
root_j = find(parent, j)
if root_i != root_j:
parent[root_j] = root_i
size[root_i] += size[root_j]
def getGroups(n, queryType, student1, student2):
parent = [i for i in range(n+1)]
size = [1] * (n+1)
result = []
for i in range(len(queryType)):
if queryType[i] == "Friend":
union(parent, size, student1[i], student2[i])
elif queryType[i] == "Total":
group1 = find(parent, student1[i])
group2 = find(parent, student2[i])
result.append(size[group1] + size[group2])
return result
Get the groups โ
if parent[i] == i:
return i
parent[i] = find(parent, parent[i])
return parent[i]
def union(parent, size, i, j):
root_i = find(parent, i)
root_j = find(parent, j)
if root_i != root_j:
parent[root_j] = root_i
size[root_i] += size[root_j]
def getGroups(n, queryType, student1, student2):
parent = [i for i in range(n+1)]
size = [1] * (n+1)
result = []
for i in range(len(queryType)):
if queryType[i] == "Friend":
union(parent, size, student1[i], student2[i])
elif queryType[i] == "Total":
group1 = find(parent, student1[i])
group2 = find(parent, student2[i])
result.append(size[group1] + size[group2])
return result
Get the groups โ
๐2๐1
def max_benefit(n,A, K):
n = len(A)
dp = [0] * (n + 1)
prefix_sum = [0] * (n + 1)
for i in range(1, n + 1):
prefix_sum[i] = prefix_sum[i - 1] + A[i - 1]
for i in range(1, n + 1):
min_val = float('inf')
max_val = float('-inf')
for j in range(1, K + 1):
if i - j >= 0:
min_val = min(min_val, prefix_sum[i] - prefix_sum[i - j])
max_val = max(max_val, prefix_sum[i] - prefix_sum[i - j])
dp[i] = max(dp[i], dp[i - j] + max(max_val, -min_val))
return dp[n] % MOD
Alternate Segment
Infosys โ
n = len(A)
dp = [0] * (n + 1)
prefix_sum = [0] * (n + 1)
for i in range(1, n + 1):
prefix_sum[i] = prefix_sum[i - 1] + A[i - 1]
for i in range(1, n + 1):
min_val = float('inf')
max_val = float('-inf')
for j in range(1, K + 1):
if i - j >= 0:
min_val = min(min_val, prefix_sum[i] - prefix_sum[i - j])
max_val = max(max_val, prefix_sum[i] - prefix_sum[i - j])
dp[i] = max(dp[i], dp[i - j] + max(max_val, -min_val))
return dp[n] % MOD
Alternate Segment
Infosys โ
๐3
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: CoinDCX
๐ Job Title: Intern - Mobile Developer
๐ Location: Bengaluru
โ๐ป YOE: 2024 and 2025 grads
โก๏ธ Apply: https://bit.ly/48VCmet
Please do share in your college grps and in case you are applying please react on this post:) ๐โค๏ธ
๐ Job Title: Intern - Mobile Developer
๐ Location: Bengaluru
โ๐ป YOE: 2024 and 2025 grads
โก๏ธ Apply: https://bit.ly/48VCmet
Please do share in your college grps and in case you are applying please react on this post:) ๐โค๏ธ
Coindcx
CoinDCX Careers
With people and personalities filled with charming quirks and livelinessโlife at CoinDCX is never dull.
๐2
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Airtel
๐ Job Title: SDE 1
๐ Location: Gurgaon
โ๐ป YOE: 0-2 years
โก๏ธ Apply: https://eeji.fa.em3.oraclecloud.com/hcmUI/CandidateExperience/en/sites/CX_1/job/125162/
Please do share in your college grps and in case you are applying please react on this post:) ๐โค๏ธ
๐ Job Title: SDE 1
๐ Location: Gurgaon
โ๐ป YOE: 0-2 years
โก๏ธ Apply: https://eeji.fa.em3.oraclecloud.com/hcmUI/CandidateExperience/en/sites/CX_1/job/125162/
Please do share in your college grps and in case you are applying please react on this post:) ๐โค๏ธ
โค1๐ฑ1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Citigroup is hiring for Data Science Role
Expected Salary: 15-25 LPA
Experience: 0-2 years
๐Apply for Citigroup: http://citi.us/4cxw7kj
Expected Salary: 15-25 LPA
Experience: 0-2 years
๐Apply for Citigroup: http://citi.us/4cxw7kj
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Vestrics Solutions Pvt Ltd is hiring for the below positions
SAP FICO
Experience: Freshers
Job Location: Hyderabad
Should be trained in the above modules
References are highly appreciated Please like, share, and comment for a better reach
For more details Please contact below details
Email ID: careers@vestrics.in
To Register, use the below link
Registration Link: https://forms.office.com/pages/responsepage.aspx?id=nEo4AVho8EOSHDiZdAFsgMwJ1pgy76lIjqiDS9kjIMZUMUJaVlhUOU1DTExPWEw4UFNZRkxQWjQ4Ty4u
Note: Registration is Mandatory to attend the interview
SAP FICO
Experience: Freshers
Job Location: Hyderabad
Should be trained in the above modules
References are highly appreciated Please like, share, and comment for a better reach
For more details Please contact below details
Email ID: careers@vestrics.in
To Register, use the below link
Registration Link: https://forms.office.com/pages/responsepage.aspx?id=nEo4AVho8EOSHDiZdAFsgMwJ1pgy76lIjqiDS9kjIMZUMUJaVlhUOU1DTExPWEw4UFNZRkxQWjQ4Ty4u
Note: Registration is Mandatory to attend the interview
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐ Zog global is Hiring !!
Role: Software Developer Intern
Batch: 2023/2024/2025/2026
Duration: 3-6 months
Location: Remote
๐Apply: https://zogglobal.com/jobs/software-developer-intern/
Role: Software Developer Intern
Batch: 2023/2024/2025/2026
Duration: 3-6 months
Location: Remote
๐Apply: https://zogglobal.com/jobs/software-developer-intern/
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐ToolJet is Hiring !!
Role: Software Engineering Intern
Stipend: 15k-25k per month
๐Apply here: https://wellfound.com/jobs/2920635-software-engineering-intern
Role: Software Engineering Intern
Stipend: 15k-25k per month
๐Apply here: https://wellfound.com/jobs/2920635-software-engineering-intern
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐จLatest Job Opening Update๐จ
Company โ NatWest Group
Role โ Business Analytics Intern
Exp. โ Fresher
Apply Here โ https://internshala.com/internship/detail/business-analytics-internship-in-gurgaon-at-natwest-group1710479537?utm_source=cp_link&referral=web_share
Company โ NatWest Group
Role โ Artificial Intelligence & Machine Learning Intern
Exp. โ Fresher
Apply Here โ https://internshala.com/internship/detail/artificial-intelligence-machine-learning-internship-in-gurgaon-at-natwest-group1710478983?utm_source=cp_link&referral=web_share
Company โ Techmicra
Role โ Data Analytics Intern
Exp. โ Fresher
Apply Here โ https://internshala.com/internship/detail/data-analytics-internship-in-ahmedabad-at-techmicra1710561303?utm_source=cp_link&referral=web_share
Company โ Saveo
Role โ Data Analyst Intern
Exp. โ Fresher
Apply Here โ https://www.naukri.com/job-listings-data-analyst-intern-unpaid-saveo-bengaluru-0-to-1-years-160224500616?src=jobsearchDesk&sid=17105986335296548_7&xp=4&px=1&nignbevent_src=jobsearchDeskGNB
Company โ NatWest Group
Role โ Business Analytics Intern
Exp. โ Fresher
Apply Here โ https://internshala.com/internship/detail/business-analytics-internship-in-gurgaon-at-natwest-group1710479537?utm_source=cp_link&referral=web_share
Company โ NatWest Group
Role โ Artificial Intelligence & Machine Learning Intern
Exp. โ Fresher
Apply Here โ https://internshala.com/internship/detail/artificial-intelligence-machine-learning-internship-in-gurgaon-at-natwest-group1710478983?utm_source=cp_link&referral=web_share
Company โ Techmicra
Role โ Data Analytics Intern
Exp. โ Fresher
Apply Here โ https://internshala.com/internship/detail/data-analytics-internship-in-ahmedabad-at-techmicra1710561303?utm_source=cp_link&referral=web_share
Company โ Saveo
Role โ Data Analyst Intern
Exp. โ Fresher
Apply Here โ https://www.naukri.com/job-listings-data-analyst-intern-unpaid-saveo-bengaluru-0-to-1-years-160224500616?src=jobsearchDesk&sid=17105986335296548_7&xp=4&px=1&nignbevent_src=jobsearchDeskGNB
Internshala
Business Analytics Internship in Gurgaon at NatWest Group
NatWest Group is looking for a talented Business analyst intern with an immense knowledge in Capital markets, Finance & Investment banking to join our team! With your strong foundation in MS-Excel, SQL, Python, MS-Office, and Tableau, you'll have the opportunityโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Flipkart
๐ Job Title: SDE - 1
โ๐ป YOE: 2023 passouts only
โก๏ธ Apply: https://docs.google.com/forms/d/e/1FAIpQLSfeDkC5yVCTUixAyevFxS9ExY5jblxaY9-CVPxWnzM-JXLX2w/viewform
Please do share in your college grps and in case you are applying please react on this post:) ๐โค๏ธ
๐ Job Title: SDE - 1
โ๐ป YOE: 2023 passouts only
โก๏ธ Apply: https://docs.google.com/forms/d/e/1FAIpQLSfeDkC5yVCTUixAyevFxS9ExY5jblxaY9-CVPxWnzM-JXLX2w/viewform
Please do share in your college grps and in case you are applying please react on this post:) ๐โค๏ธ
๐1