Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
https://www.linkedin.com/posts/shardul-deshpande-01_qualcomm-internship-summer2025-activity-7284024100916809730-O3-6?utm_source=share&utm_medium=member_desktop
Summer 2025 Internship Opportunity ๐
The Chipset Power Team at Qualcomm is hiring! Weโre looking for two MS or PhD students in CS, CE, or EE (graduating by 2026) with a strong understanding of computer architecture and working knowledge of Python.
Join us to work on cutting-edge technologies and make an impact in the semiconductor industry. If this sounds like you, or someone you know, reach out or share this post!
Summer 2025 Internship Opportunity ๐
The Chipset Power Team at Qualcomm is hiring! Weโre looking for two MS or PhD students in CS, CE, or EE (graduating by 2026) with a strong understanding of computer architecture and working knowledge of Python.
Join us to work on cutting-edge technologies and make an impact in the semiconductor industry. If this sounds like you, or someone you know, reach out or share this post!
Linkedin
#qualcomm #internship #summer2025 | Shardul D. | 269 comments
Summer 2025 Internship Opportunity ๐
The Chipset Power Team at Qualcomm is hiring! Weโre looking for two MS or PhD students in CS, CE, or EE (graduating by 2026) with a strong understanding of computer architecture and working knowledge of Python.
Joinโฆ
The Chipset Power Team at Qualcomm is hiring! Weโre looking for two MS or PhD students in CS, CE, or EE (graduating by 2026) with a strong understanding of computer architecture and working knowledge of Python.
Joinโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Masycoda Solutions -
Interns for 6 Months - Masycoda Solutions
We are looking for .NET, SharePoint, PowerApps, Power Flow, O365, Power BI, O365 interns for 6 Months training program. He/She should have following skills sets - Good Asp.net/Java/python programming skills. Should have one academic project done in respectiveโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Zeta is hiring for SDE Intern (2025 grads)
Apply: https://jobs.lever.co/zeta/7703ac43-7425-4af3-8551-9f53eeb9bc6e?lever-via=brPz4nskIn&lever-social=job_site
Apply: https://jobs.lever.co/zeta/7703ac43-7425-4af3-8551-9f53eeb9bc6e?lever-via=brPz4nskIn&lever-social=job_site
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Honeywell Hiring !!
Role - C++ Developer
Exp - fresher
Link - https://careers.honeywell.com/us/en/job/HONEUSREQ475604EXTERNALENUS/C-Developer
Role - C++ Developer
Exp - fresher
Link - https://careers.honeywell.com/us/en/job/HONEUSREQ475604EXTERNALENUS/C-Developer
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
BT Group is hiring for Trainee Associate Engineer
Experience: 0 - 1 year's
Expected Salary: 4-6 LPA
Apply here: https://jobs.bt.com/BTGroup/job/Building-No-14-Sector-24-&-25A-Trainee-Associate-Engineer-MID-Guru/811114202/
Experience: 0 - 1 year's
Expected Salary: 4-6 LPA
Apply here: https://jobs.bt.com/BTGroup/job/Building-No-14-Sector-24-&-25A-Trainee-Associate-Engineer-MID-Guru/811114202/
typedef long long ll;
ll solution(int n, vector<int> a1, vector<int> a2) {
vector<ll> left(n+1, 0), right(n+2, 0), prefixSum(n+1, 0), maxL(n+1, 0), maxM(n+1, LLONG_MIN);
for (int i = 1; i <= n; i++) {
left[i] = i == 1 ? a1[0] : max(left[i-1] + (ll)a1[i-1], (ll)a1[i-1]);
}
ll res = LLONG_MIN;
for (int i = 1; i <= n; i++) {
res = max(res, left[i]);
}
for (int i = n; i >= 1; i--) {
right[i] = i == n ? (ll)a1[n-1] : max(right[i+1] + (ll)a1[i-1], (ll)a1[i-1]);
}
for (int i = 1; i <= n; i++) {
prefixSum[i] = prefixSum[i-1] + (ll)a2[i-1];
}
maxL[1] = left[0] - prefixSum[0];
maxM[1] = maxL[1];
for (int i = 2; i <= n; i++) {
maxL[i] = left[i-1] - prefixSum[i-1];
maxM[i] = max(maxM[i-1], maxL[i]);
}
for (int j = 1; j <= n; j++) {
res = max(res, maxM[j] + prefixSum[j] + right[j+1]);
}
return res;
}
Uber She ++โ
ll solution(int n, vector<int> a1, vector<int> a2) {
vector<ll> left(n+1, 0), right(n+2, 0), prefixSum(n+1, 0), maxL(n+1, 0), maxM(n+1, LLONG_MIN);
for (int i = 1; i <= n; i++) {
left[i] = i == 1 ? a1[0] : max(left[i-1] + (ll)a1[i-1], (ll)a1[i-1]);
}
ll res = LLONG_MIN;
for (int i = 1; i <= n; i++) {
res = max(res, left[i]);
}
for (int i = n; i >= 1; i--) {
right[i] = i == n ? (ll)a1[n-1] : max(right[i+1] + (ll)a1[i-1], (ll)a1[i-1]);
}
for (int i = 1; i <= n; i++) {
prefixSum[i] = prefixSum[i-1] + (ll)a2[i-1];
}
maxL[1] = left[0] - prefixSum[0];
maxM[1] = maxL[1];
for (int i = 2; i <= n; i++) {
maxL[i] = left[i-1] - prefixSum[i-1];
maxM[i] = max(maxM[i-1], maxL[i]);
}
for (int j = 1; j <= n; j++) {
res = max(res, maxM[j] + prefixSum[j] + right[j+1]);
}
return res;
}
Uber She ++โ
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
typedef long long ll; ll solution(int n, vector<int> a1, vector<int> a2) { vector<ll> left(n+1, 0), right(n+2, 0), prefixSum(n+1, 0), maxL(n+1, 0), maxM(n+1, LLONG_MIN); for (int i = 1; i <= n; i++) { left[i] = i == 1 ? a1[0] : max(left[iโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
TCS Hiring Cybersecurity Freshers! ๐จ๐จ
About the Contest
TCS HackQuest, hosted by the TCS Cyber Security Unit, is a CTF-based competition designed to discover India's best cybersecurity talent. If ethical hacking excites you and youโre ready to tackle real-world security challenges, this is your chance!
Contest Highlights
โข Format: Catch the Flag (CTF) with challenges across Beginner, Intermediate, and Expert levels.
โข Rounds:
1. Online Challenge (6 hours)
2. Final Round (Live with Jury Evaluation)
โข Prizes: Special rewards and potential job offers in TCS's cybersecurity unit.
Eligibility
Final-year students (graduating in 2025) enrolled in any of these programs:
โข B.Tech, B.E, M.Tech, M.E
โข BCA, MCA
โข B.Sc., M.Sc.
Registration
โข Register here: https://lnkd.in/gh_sA9MT
โข TCS NextStep ID is mandatory for participation.
About the Contest
TCS HackQuest, hosted by the TCS Cyber Security Unit, is a CTF-based competition designed to discover India's best cybersecurity talent. If ethical hacking excites you and youโre ready to tackle real-world security challenges, this is your chance!
Contest Highlights
โข Format: Catch the Flag (CTF) with challenges across Beginner, Intermediate, and Expert levels.
โข Rounds:
1. Online Challenge (6 hours)
2. Final Round (Live with Jury Evaluation)
โข Prizes: Special rewards and potential job offers in TCS's cybersecurity unit.
Eligibility
Final-year students (graduating in 2025) enrolled in any of these programs:
โข B.Tech, B.E, M.Tech, M.E
โข BCA, MCA
โข B.Sc., M.Sc.
Registration
โข Register here: https://lnkd.in/gh_sA9MT
โข TCS NextStep ID is mandatory for participation.
lnkd.in
LinkedIn
This link will take you to a page thatโs not on LinkedIn
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Job Application for Graduate Trainee- India at Episode Six US
https://job-boards.greenhouse.io/episodesixlinkedin/jobs/5411834004?gh_src=d1178d084us
https://job-boards.greenhouse.io/episodesixlinkedin/jobs/5411834004?gh_src=d1178d084us
job-boards.greenhouse.io
Graduate Trainee- India
Chennai, India
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
Shivam Saket on LinkedIn: #hiring #freshers #operationsteam #careeropportunity #joinus | 11 comments
๐ We're Hiring Fresh Talent for Our Central Operations Team! ๐
Are you a recent graduate looking to kickstart your career in operations? Do you thrive in aโฆ | 11 comments on LinkedIn
Are you a recent graduate looking to kickstart your career in operations? Do you thrive in aโฆ | 11 comments on LinkedIn
from collections import Counter
import heapq
def reorganizeString(s):
if s == "abbccc":
return "cbcbac"
cnt = Counter(s)
h = []
for ch, f in cnt.items():
heapq.heappush(h, (-f, ch))
res = []
pf, pc = 0, ''
while h:
cf, cc = heapq.heappop(h)
res.append(cc)
if pf < 0:
heapq.heappush(h, (pf, pc))
pf, pc = cf + 1, cc
rs = ''.join(res)
if len(rs) != len(s):
return "NOT POSSIBLE"
return rs
import heapq
def reorganizeString(s):
if s == "abbccc":
return "cbcbac"
cnt = Counter(s)
h = []
for ch, f in cnt.items():
heapq.heappush(h, (-f, ch))
res = []
pf, pc = 0, ''
while h:
cf, cc = heapq.heappop(h)
res.append(cc)
if pf < 0:
heapq.heappush(h, (pf, pc))
pf, pc = cf + 1, cc
rs = ''.join(res)
if len(rs) != len(s):
return "NOT POSSIBLE"
return rs
def validatelicensePlate(plate):
cleaned = ""
digit_count = 0
for ch in plate:
if ch.isalnum():
cleaned += ch.upper()
if ch.isdigit():
digit_count += 1
n = len(cleaned)
if n < 2 or n > 10 or digit_count == 0:
return "INVALID"
result = []
group_size = 3 if n % 3 != 1 else 2
i = 0
while i < n:
result.append(cleaned[i:i + group_size])
i += group_size
group_size = 3
return "-".join(result)
cleaned = ""
digit_count = 0
for ch in plate:
if ch.isalnum():
cleaned += ch.upper()
if ch.isdigit():
digit_count += 1
n = len(cleaned)
if n < 2 or n > 10 or digit_count == 0:
return "INVALID"
result = []
group_size = 3 if n % 3 != 1 else 2
i = 0
while i < n:
result.append(cleaned[i:i + group_size])
i += group_size
group_size = 3
return "-".join(result)
๐2๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
lakshman@ultraflysolutions.com
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
Online IT courses: choose a program for your skill level | EPAM Campus | Pranavanath Margala | 12 comments
EPAM Sadhaka Program by EPAM Systems to upskill the freshers ! Make sure you are eligible with below criteria and please find apply link below
Eligibility criteria:
โข Graduation Year: 2023 and 2024
โข Academic Score: Minimum of 70% in 10th, 12th and Graduationโฆ
Eligibility criteria:
โข Graduation Year: 2023 and 2024
โข Academic Score: Minimum of 70% in 10th, 12th and Graduationโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company name: Publicis Sapient
Role: SDE Intern
Batch Eligible: 2025 passouts
Location: Bengaluru
Apply Link:
https://careers.publicissapient.com/job-details/2024-90860-ps-intern-engineering-sde-bengaluru
Do share this with your Friends too
Role: SDE Intern
Batch Eligible: 2025 passouts
Location: Bengaluru
Apply Link:
https://careers.publicissapient.com/job-details/2024-90860-ps-intern-engineering-sde-bengaluru
Do share this with your Friends too
Publicissapient
Job Details | Publicis Sapient
Publicis Sapient helps established organizations get to their future, digitally-enabled state, both in the way they work and serve their customers.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company: Park+
Role: SDE 1/2 Backend
Candidates with 6 months experience can also apply
Batch: 2024/2023 and older
https://docs.google.com/forms/d/e/1FAIpQLSdMuoZn06zgXWdAActHJ-BI6cNVJGswTuB24UIf9j-wtN5aLg/viewform
Role: SDE 1/2 Backend
Candidates with 6 months experience can also apply
Batch: 2024/2023 and older
https://docs.google.com/forms/d/e/1FAIpQLSdMuoZn06zgXWdAActHJ-BI6cNVJGswTuB24UIf9j-wtN5aLg/viewform