Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ
Palo Alto Networks is hiring for Associate Software Engineer role
Batch eligible: 2022 grads only
Link: https://www.linkedin.com/jobs/view/3319421021
Batch eligible: 2022 grads only
Link: https://www.linkedin.com/jobs/view/3319421021
Linkedin
Palo Alto Networks hiring Associate IT Software Engineer (Salesforce) in Bengaluru, Karnataka, India | LinkedIn
Posted 11:29:10 AM. Company DescriptionOur MissionAt Palo Alto Networksยฎ everything starts and ends with ourโฆSee this and similar jobs on LinkedIn.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ
NI is hiring for Software Engineer Intern role (2023 batch eligible only)
Link: https://bit.ly/3DbX2T5
Link: https://bit.ly/3DbX2T5
NI
Software Engineering Intern
Software Engineering Intern in R&D Software Services
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ
Salesforce is hiring for Software Engineer Intern role (Only 2024 batch eligible)
Link: https://salesforce.wd1.myworkdayjobs.com/External_Career_Site/job/India---Hyderabad/Intern-Software-Engineering_JR156921-2?source=LinkedIn_Jobs
Link: https://salesforce.wd1.myworkdayjobs.com/External_Career_Site/job/India---Hyderabad/Intern-Software-Engineering_JR156921-2?source=LinkedIn_Jobs
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ
PayPal is hiring for Software Engineer 1 (Batch eligible: 2023 passouts)
Link: https://www.linkedin.com/jobs/view/3320789743
Link: https://www.linkedin.com/jobs/view/3320789743
Linkedin
83,000+ Graduate Software Engineer jobs in India (3,955 new)
Todayโs top 83,000+ Graduate Software Engineer jobs in India. Leverage your professional network, and get hired. New Graduate Software Engineer jobs added daily.
Upstox hiring
Role: Intern
Batch: 2023
Link: https://jobs.lever.co/upstox/9d9e90a9-1a0b-4116-8c51-99fbfc2c77e9
Role: Intern
Batch: 2023
Link: https://jobs.lever.co/upstox/9d9e90a9-1a0b-4116-8c51-99fbfc2c77e9
MongoDB hiring
Role: New Grad - Software Engineering
Batch: 2022 & before
Location: Australia
Link: https://www.mongodb.com/careers/jobs/3912798?gh_src=7b1bee8f1us
Role: New Grad - Software Engineering
Batch: 2022 & before
Location: Australia
Link: https://www.mongodb.com/careers/jobs/3912798?gh_src=7b1bee8f1us
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ
PayPal hiring!!
1) ๐ ๐ฎ๐ฅ๐ฅ ๐ญ๐ข๐ฆ๐ ๐๐จ๐ซ 2023 ๐ ๐ซ๐๐๐ฌ
Link: https://lnkd.in/g3uHHky2
2) ๐๐ง๐ญ๐๐ซ๐ง ๐ก๐ข๐ซ๐ข๐ง๐ ๐๐จ๐ซ 2024 ๐ ๐ซ๐๐๐ฌ
Link: https://lnkd.in/g6P47GcK
1) ๐ ๐ฎ๐ฅ๐ฅ ๐ญ๐ข๐ฆ๐ ๐๐จ๐ซ 2023 ๐ ๐ซ๐๐๐ฌ
Link: https://lnkd.in/g3uHHky2
2) ๐๐ง๐ญ๐๐ซ๐ง ๐ก๐ข๐ซ๐ข๐ง๐ ๐๐จ๐ซ 2024 ๐ ๐ซ๐๐๐ฌ
Link: https://lnkd.in/g6P47GcK
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ
Graduate Trainee Engineer (Fresher) in Bangalore, India | Advanta
https://jobs.siemens.com/jobs/338840?lang=en-us
https://jobs.siemens.com/jobs/338840?lang=en-us
Graduate Trainee Engineer (Fresher) in Bangalore, India | Advanta
Siemens is hiring a Graduate Trainee Engineer (Fresher) in Bangalore, India. Review all of the job details and apply today!
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ
๐ด Company:- CarDekho
Job Role :- Software Engineer
Experienced Required :- 0 - 5 years
Eligibility :-B.Tech/B.E
Salary Range :- 8 to 30 LPA+ (Depend upon Experience)
Job Location - Gurugram, Haryana
โ๏ธ Apply Link : https://bit.ly/3z0F0ke
Job Role :- Software Engineer
Experienced Required :- 0 - 5 years
Eligibility :-B.Tech/B.E
Salary Range :- 8 to 30 LPA+ (Depend upon Experience)
Job Location - Gurugram, Haryana
โ๏ธ Apply Link : https://bit.ly/3z0F0ke
Klimb
GirnarSoft, Software Engineer - React, Gurugram, Haryana, India
To work with the product team and develop new features for our website
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ
RedBus Hiring for Software Engineer Role
Batch: 2021 and 2022 are Eligible
Link: https://www.redbus.in/careers/jobsdesc?jobid=a616e695b899b8
Batch: 2021 and 2022 are Eligible
Link: https://www.redbus.in/careers/jobsdesc?jobid=a616e695b899b8
๐1
def countMaximumOperations(self,s,t):
if len(t) > len(s):
return -1
tCount = {}
sCount = {}
for i in range(len(t)):
tCount[t[i]] = 1 + tCount.get(t[i],0)
sCount[s[i]] = 1 + sCount.get(s[i],0)
res = 1 if tCount == sCount else 0
l = 0
for r in range(len(t),len(s)):
sCount[s[r]] = 1 + sCount.get(s[r],0)
sCount[s[l]] -= 1
if sCount[s[l]] == 0:
sCount.pop(s[l])
l+=1
if sCount == tCount:
res+=1
return res if res > 0 else -1
Amazon โ
if len(t) > len(s):
return -1
tCount = {}
sCount = {}
for i in range(len(t)):
tCount[t[i]] = 1 + tCount.get(t[i],0)
sCount[s[i]] = 1 + sCount.get(s[i],0)
res = 1 if tCount == sCount else 0
l = 0
for r in range(len(t),len(s)):
sCount[s[r]] = 1 + sCount.get(s[r],0)
sCount[s[l]] -= 1
if sCount[s[l]] == 0:
sCount.pop(s[l])
l+=1
if sCount == tCount:
res+=1
return res if res > 0 else -1
Amazon โ
๐1