Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Software Engineer Intern at Figma โจ
Location: New York/San Francisco, US
Compensation: $51 per hour
Duration: 3 months
Batch: 2026/2025
Apply here: https://peerlist.io/company/figma808/careers/software-engineer-intern-2026/jobhdndggnprkeroahanjjae8mgm7m?utm_source=reddit
For more off campus hiring updates, you can also join our communities
Do share with your Friends too ๐
Location: New York/San Francisco, US
Compensation: $51 per hour
Duration: 3 months
Batch: 2026/2025
Apply here: https://peerlist.io/company/figma808/careers/software-engineer-intern-2026/jobhdndggnprkeroahanjjae8mgm7m?utm_source=reddit
For more off campus hiring updates, you can also join our communities
Do share with your Friends too ๐
Peerlist
Software Engineer Intern (2026) at Figma
Figma is hiring with Peerlist for a Internship Software Engineer Intern (2026). Required skills: C++,JavaScript,Python,Java,Data Structures,Algorithms
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Associate Software Engineer at Cotiviti|Remote|Batch: 2025/2024
Apply here: https://globalcareers-cotiviti.icims.com/jobs/16396/associate-software-engineer/job
Do share with your Friends too ๐
Apply here: https://globalcareers-cotiviti.icims.com/jobs/16396/associate-software-engineer/job
Do share with your Friends too ๐
Careers (ROW)
Associate Software Engineer in Remote | Careers at IND Nationwide Remote
Overview:
Associate Software Engineer is an integral part of our engineering team, mentored by more senior team members and assisting in design, development, and implementation of our innovative products and services, taking on more responsibility asโฆ
Associate Software Engineer is an integral part of our engineering team, mentored by more senior team members and assisting in design, development, and implementation of our innovative products and services, taking on more responsibility asโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
FinOps Intern at Payoneer ๐
Location: Gurugram, India
Duration: 6 months
Batch: 2026/2025
Apply here: https://www.payoneer.com/careers/position/7007030/?gh_jid=7007030&v=3.7.7
Location: Gurugram, India
Duration: 6 months
Batch: 2026/2025
Apply here: https://www.payoneer.com/careers/position/7007030/?gh_jid=7007030&v=3.7.7
Payoneer
FinOps Intern | Payoneer Careers
Gurugram, India
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Creditas is hiring Junior Data Analyst
For 2022, 2023, 2024, 2025 grads
Location: Gurugram
https://www.linkedin.com/jobs/view/4291901232
For 2022, 2023, 2024, 2025 grads
Location: Gurugram
https://www.linkedin.com/jobs/view/4291901232
Linkedin
Creditas Solutions hiring Junior Data Analyst in Gurugram, Haryana, India | LinkedIn
Posted 2:14:04 PM. Position OverviewWe are looking for an enthusiastic and motivated fresher or someone with 0-24โฆSee this and similar jobs on LinkedIn.
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
def getMaxConsecutiveHidden(commits):
n = len(commits)
if n <= 2:
return 0
max_hidden = 0
start = 0
if commits[-1] != commits[0] + n - 1:
can_hide_all = True
for i in range(1, n - 1):
if commits[i] != commits[0] + i:
can_hide_all = False
break
if can_hide_all:
return n - 2
for i in range(1, n):
if commits[i] == commits[i - 1] + 1:
continue
else:
seq_length = i - start
if seq_length > 1:
valid = True
if start > 0 and i < n:
if (commits[start] == commits[start - 1] + 1 and
commits[i] == commits[i - 1] + 1):
valid = False
if valid:
max_hidden = max(max_hidden, seq_length - 1)
start = i
seq_length = n - start
if seq_length > 1:
valid = True
if start > 0:
if commits[start] == commits[start - 1] + 1:
valid = False
if valid:
max_hidden = max(max_hidden, seq_length - 1)
return max_hidden
n = len(commits)
if n <= 2:
return 0
max_hidden = 0
start = 0
if commits[-1] != commits[0] + n - 1:
can_hide_all = True
for i in range(1, n - 1):
if commits[i] != commits[0] + i:
can_hide_all = False
break
if can_hide_all:
return n - 2
for i in range(1, n):
if commits[i] == commits[i - 1] + 1:
continue
else:
seq_length = i - start
if seq_length > 1:
valid = True
if start > 0 and i < n:
if (commits[start] == commits[start - 1] + 1 and
commits[i] == commits[i - 1] + 1):
valid = False
if valid:
max_hidden = max(max_hidden, seq_length - 1)
start = i
seq_length = n - start
if seq_length > 1:
valid = True
if start > 0:
if commits[start] == commits[start - 1] + 1:
valid = False
if valid:
max_hidden = max(max_hidden, seq_length - 1)
return max_hidden
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
#include<bits/stdc++.h>
using namespace std;
int memoize(int l, int r, int residue, const vector<char>& colors) {
int n = colors.size();
int dp[n][n][n];
memset(dp, -1, sizeof(dp));
if (r < l)
return 0;
else if (dp[l][r][residue] != -1)
return dp[l][r][residue];
dp[l][r][residue] = (residue + 1) * (residue + 1) + memoize(l, r - 1, 0, colors);
for (int i = l; i < r; i++) {
if (colors[i] == colors[r]) {
dp[l][r][residue] = max(dp[l][r][residue], memoize(l, i - 1, 0, colors) + memoize(i + 1, r, residue + 1, colors));
}
}
return dp[l][r][residue];
}
int solve(int n, vector<char> colors) {
return memoize(0, n - 1, 0, colors);
}
int main() {
int n;
cin >> n;
vector<char> colors(n);
for (int i = 0; i < n; i++) {
cin >> colors[i];
}
cout << solve(n, colors);
return 0;
}
Crayon Removal Scoring Game โ
using namespace std;
int memoize(int l, int r, int residue, const vector<char>& colors) {
int n = colors.size();
int dp[n][n][n];
memset(dp, -1, sizeof(dp));
if (r < l)
return 0;
else if (dp[l][r][residue] != -1)
return dp[l][r][residue];
dp[l][r][residue] = (residue + 1) * (residue + 1) + memoize(l, r - 1, 0, colors);
for (int i = l; i < r; i++) {
if (colors[i] == colors[r]) {
dp[l][r][residue] = max(dp[l][r][residue], memoize(l, i - 1, 0, colors) + memoize(i + 1, r, residue + 1, colors));
}
}
return dp[l][r][residue];
}
int solve(int n, vector<char> colors) {
return memoize(0, n - 1, 0, colors);
}
int main() {
int n;
cin >> n;
vector<char> colors(n);
for (int i = 0; i < n; i++) {
cin >> colors[i];
}
cout << solve(n, colors);
return 0;
}
Crayon Removal Scoring Game โ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
I am looking for an intern to help build new age automation systems.
If you know Python or JavaScript and have some basic software development skills, this could be for you.
โจ Perks: Remote work, competitive pay, and chances of a full time offer.
๐ก Plus points: Experience with n8n, CrewAI, or LangChain.
email: ayush.som@prossimatech.com
If you know Python or JavaScript and have some basic software development skills, this could be for you.
โจ Perks: Remote work, competitive pay, and chances of a full time offer.
๐ก Plus points: Experience with n8n, CrewAI, or LangChain.
email: ayush.som@prossimatech.com
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
Weโre looking for Frontend Developer interns at Razorpod & Razornext (Gurgaon, Haryana). Sharing here in case itโs a fit for someoneโฆ
Weโre looking for Frontend Developer interns at Razorpod & Razornext (Gurgaon, Haryana). Sharing here in case itโs a fit for someone you know (or you!)
If you enjoy building things with React.js, Next.js, TypeScript, and Tailwind CSS, and want to see yourโฆ
If you enjoy building things with React.js, Next.js, TypeScript, and Tailwind CSS, and want to see yourโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐ Weโre Hiring SDE Interns at CredFlow!
At CredFlow, we empower over 100,000+ SMEs across India to unlock working capital, streamline finances, and fuel their growth. Our systems process 4Bn+ API hits monthly, handle 100TB+ of data, and power financial decision-making for businesses every day
.
Weโre looking for Software Development Engineer (SDE) Interns who are passionate about building scalable technology, problem-solving, and learning in a fast-paced environment.
๐น What youโll do:
Work alongside senior engineers on real-world product development.
Design, code, test, and debug applications.
Learn best practices in software engineering while contributing to meaningful projects.
๐น What weโre looking for:
Fresh engineering 2025 graduates (preferably CS or related fields).
Knowledge of at least one OOP language and one database system.
Strong problem-solving and communication skills.
๐ Location: Noida, Sector 3
๐ Internship with a strong opportunity to transition into a full-time role.
If youโre excited to be part of a high-growth fintech revolution, apply now and letโs build the future of SME finance together!
๐ Drop your CV at Gazal.khan@credflow.in or apply directly through LinkedIn.
At CredFlow, we empower over 100,000+ SMEs across India to unlock working capital, streamline finances, and fuel their growth. Our systems process 4Bn+ API hits monthly, handle 100TB+ of data, and power financial decision-making for businesses every day
.
Weโre looking for Software Development Engineer (SDE) Interns who are passionate about building scalable technology, problem-solving, and learning in a fast-paced environment.
๐น What youโll do:
Work alongside senior engineers on real-world product development.
Design, code, test, and debug applications.
Learn best practices in software engineering while contributing to meaningful projects.
๐น What weโre looking for:
Fresh engineering 2025 graduates (preferably CS or related fields).
Knowledge of at least one OOP language and one database system.
Strong problem-solving and communication skills.
๐ Location: Noida, Sector 3
๐ Internship with a strong opportunity to transition into a full-time role.
If youโre excited to be part of a high-growth fintech revolution, apply now and letโs build the future of SME finance together!
๐ Drop your CV at Gazal.khan@credflow.in or apply directly through LinkedIn.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Wellfound
Full-Stack Engineer (Internship 2025) at AI Planet โข Hyderabad
AI Planet is hiring a Full-Stack Engineer (Internship 2025) in Hyderabad - Apply now on Wellfound!
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Hcltech
Analyst with DWP-UCC-Network Voice in Noida | HCLTech
We are hiring Analyst with DWP-UCC-Network Voice skills and 0-2.5 Years of experience in Noida. Supercharge your career with HCLTech. Apply now!
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company: Rubrik
Role: Software Engineer Intern, 6 Months Internship
Batch: 2026 passouts
Stipend: 1 lakh+
Apply: 6 Months Internship
https://www.rubrik.com/company/careers/departments/job.7208329
Role: Software Engineer Intern, 6 Months Internship
Batch: 2026 passouts
Stipend: 1 lakh+
Apply: 6 Months Internship
https://www.rubrik.com/company/careers/departments/job.7208329
Rubrik
Software Engineer - Winter Intern
Accelerate your career at Rubrik
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: MRI Software
Role: Intern
Eligibility: 2026 grads
https://mrisoftware.wd501.myworkdayjobs.com/External_CareerSite/job/Bangalore-India-Office/Intern_R-105447
Role: Intern
Eligibility: 2026 grads
https://mrisoftware.wd501.myworkdayjobs.com/External_CareerSite/job/Bangalore-India-Office/Intern_R-105447
Myworkdayjobs
Intern
We are currently seeking a Junior Software Engineer to work within our global Product Development department working to apply defined software development life cycle processes to deliver production ready code of the highest quality, this individual will beโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Nanonets is hiring for Data Engineer (0-2 years)
Experience: 0 - 2 years
Expected Salary: 15-25 LPA
Apply here: https://www.linkedin.com/jobs/view/4292895159/
Experience: 0 - 2 years
Expected Salary: 15-25 LPA
Apply here: https://www.linkedin.com/jobs/view/4292895159/
Linkedin
Nanonets hiring Data Engineer in Bengaluru, Karnataka, India | LinkedIn
Posted 12:19:30 PM. Nanonets has a vision to help computers see the world starting with reading and understandingโฆ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)
L&T is hiring for Diploma Engineer Trainee Role
Experience: 0 - 2 years
Apply here: https://forms.office.com/pages/responsepage.aspx?id=_NBSSHr4K0atCXc_mGzMBC4ued-ulMFCsj29pPcuyV5UQjg1WFhNREpLS1dNRzFMRVVQWDA0WjIwUC4u&route=shorturl
Experience: 0 - 2 years
Apply here: https://forms.office.com/pages/responsepage.aspx?id=_NBSSHr4K0atCXc_mGzMBC4ued-ulMFCsj29pPcuyV5UQjg1WFhNREpLS1dNRzFMRVVQWDA0WjIwUC4u&route=shorturl
Office
Please fill out this form
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
dozee is hiring for Software Engineer
Experience: 0 - 2 years
Apply here: https://jobs.lever.co/dozee/1b59b5a6-5458-41e0-a920-2af562e951aa
Experience: 0 - 2 years
Apply here: https://jobs.lever.co/dozee/1b59b5a6-5458-41e0-a920-2af562e951aa
jobs.lever.co
Dozee - Software Engineer I
Role overview: We are seeking a highly motivated and enthusiastic Full Stack Developer to join our team. The ideal candidate will be passionate about web technologies, eager to learn, and capable of contributing to both front-end and back-end developmentโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Calix is hiring for Graduate Trainee
Experience: 0 - 2 years
Apply here: https://calix.wd1.myworkdayjobs.com/ExternalInternational/job/Bangalore/Graduate-Trainee--Customer-Success_R-10368?source=LinkedIn
Synopsys is hiring for Intern Roles
Experience: 0 - 2 years
Apply here: https://careers.synopsys.com/job/-/-/44408/85512221232
Experience: 0 - 2 years
Apply here: https://calix.wd1.myworkdayjobs.com/ExternalInternational/job/Bangalore/Graduate-Trainee--Customer-Success_R-10368?source=LinkedIn
Synopsys is hiring for Intern Roles
Experience: 0 - 2 years
Apply here: https://careers.synopsys.com/job/-/-/44408/85512221232
Myworkdayjobs
Graduate Trainee, Customer Success
Calix provides the cloud, software platforms, systems and services required for communications service providers to simplify their businesses, excite their subscribers and grow their value. Customer Succes: Support Internship Location: India โ (Flexible hybridโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Cargill is hiring for Software Engineer Intern
Experience: 0 - 2 years
Expected Stipend: 3-4 LPA
Apply here: https://careers.cargill.com/en/job/-/-/23251/85548314848
Experience: 0 - 2 years
Expected Stipend: 3-4 LPA
Apply here: https://careers.cargill.com/en/job/-/-/23251/85548314848
Cargill
Software Engineer Intern at Cargill
Learn more about applying for Software Engineer Intern at Cargill