Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Times internet is hiring software engineer
Exp : 0-1 years
Link : https://www.linkedin.com/feed/update/urn:li:activity:7239244367142469634
Exp : 0-1 years
Link : https://www.linkedin.com/feed/update/urn:li:activity:7239244367142469634
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Idea Forage is hiring Engineer
For 2022, 2023, 2024 grads
Location: Bangalore
https://app.webbtree.com/company/ideaforge/jobs/engineer-i-e569b3?utm_campaign=linkedin_ll_jobs_apply&utm_source=linkedin_ll&utm_medium=organic
For 2022, 2023, 2024 grads
Location: Bangalore
https://app.webbtree.com/company/ideaforge/jobs/engineer-i-e569b3?utm_campaign=linkedin_ll_jobs_apply&utm_source=linkedin_ll&utm_medium=organic
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
Infoane Technologies Pvt Ltd on LinkedIn: #hiring #freshers #eligibility #apply #ece #cse #it #mca #academics #bscโฆ | 287 comments
Hello everyone,
We are currently #hiring #freshers. Please review the following #eligibility criteria and #apply through the following link:โฆ | 287 comments on LinkedIn
We are currently #hiring #freshers. Please review the following #eligibility criteria and #apply through the following link:โฆ | 287 comments on LinkedIn
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Hiring for AI/ML Traniee Engineer
Experience: 0 - 2 years
Batch: 2022, 2023, 2024
Qualification: Any Degree
๐ปApply: https://forms.office.com/pages/responsepage.aspx?id=w4Nvcb16oUKG0uAgf0qpgdMje2z1MalJpIkCrESiIElUMjJWTjlYMUdBSE9FMFYyRkxSVTZaMUdRSi4u
Experience: 0 - 2 years
Batch: 2022, 2023, 2024
Qualification: Any Degree
๐ปApply: https://forms.office.com/pages/responsepage.aspx?id=w4Nvcb16oUKG0uAgf0qpgdMje2z1MalJpIkCrESiIElUMjJWTjlYMUdBSE9FMFYyRkxSVTZaMUdRSi4u
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
class Solution {
public:
int minSideJumps(vector<int>& obstacles) {
const int inf = 1 << 30;
vector<int> f(3, inf);
f[1] = 0;
for (int i = 0; i < obstacles.size(); ++i) {
vector<int> new_f(3, inf);
for (int j = 0; j < 3; ++j) {
if (obstacles[i] != j + 1) {
new_f[j] = min(f[j], min({f[(j + 1) % 3], f[(j + 2) % 3]}) + 1);
}
}
f = new_f;
}
return min({f[0], f[1], f[2]});
}
};
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
https://docs.google.com/forms/d/e/1FAIpQLSeLlhXegzo-BseQ_4guEmwOuQJXvDLUSpdKHbUfRmFVVzz_bg/viewform
Testing Internship @ Jnet Technologies
Jnet technologies has an open position for Automation testing internship for 6 months in Hyderabad location.
Testing Internship @ Jnet Technologies
Jnet technologies has an open position for Automation testing internship for 6 months in Hyderabad location.
#include <bits/stdc++.h>
using namespace std;
long long getMinimumTotalCost(vector<int>& weights, int k) {
vector<int> adjSums;
int n = weights.size();
for (int i = 0; i < n - 1; i++) {
adjSums.push_back(weights[i] + weights[i + 1]);
}
sort(adjSums.begin(), adjSums.end());
long long minCost = weights[0] + weights[n - 1];
for (int i = 0; i < k - 1; i++) {
minCost += adjSums[i];
}
return minCost;
}
vector<vector<int>> precompute_extra_time(const string &s) {
int n = s.length();
vector<vector<int>> extra_time(n, vector<int>(n, 0));
for (int i = 0; i < n; i++) {
vector<int> freq(26, 0);
for (int j = i; j < n; j++) {
freq[s[j] - 'a']++;
int pairs = 0;
for (int f : freq) if (f > 1) pairs += (f * (f - 1)) / 2;
extra_time[i][j] = pairs;
}
}
return extra_time;
}
int getMinTotalExtraTime(string s, int k) {
int n = s.length();
vector<vector<int>> extra_time = precompute_extra_time(s);
vector<int> dp(n + 1, INT_MAX);
dp[0] = 0;
for (int i = 1; i <= n; i++) {
for (int j = 0; j < i; j++) {
dp[i] = min(dp[i], dp[j] + extra_time[j][i - 1] + k);
}
}
return dp[n] - k;
}
DE Shaw โ
int n = s.length();
vector<vector<int>> extra_time(n, vector<int>(n, 0));
for (int i = 0; i < n; i++) {
vector<int> freq(26, 0);
for (int j = i; j < n; j++) {
freq[s[j] - 'a']++;
int pairs = 0;
for (int f : freq) if (f > 1) pairs += (f * (f - 1)) / 2;
extra_time[i][j] = pairs;
}
}
return extra_time;
}
int getMinTotalExtraTime(string s, int k) {
int n = s.length();
vector<vector<int>> extra_time = precompute_extra_time(s);
vector<int> dp(n + 1, INT_MAX);
dp[0] = 0;
for (int i = 1; i <= n; i++) {
for (int j = 0; j < i; j++) {
dp[i] = min(dp[i], dp[j] + extra_time[j][i - 1] + k);
}
}
return dp[n] - k;
}
DE Shaw โ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
https://www.naukri.com/job-listings-it-intern-leuwint-technologies-palakkad-0-to-1-years-110924906843?src=cluster&sid=17260519887449949_2&xp=6&px=1&nignbevent_src=jobsearchDeskGNB
Leuwint Technologies Hiring IT Intern
Completed a degree in Computer Science, Software Engineering, or a related field.(2022- 2024 pass out)
Proficiency in at least one programming language, such as Java, Python, C++, JavaScript, or similar.
Familiarity with web development (HTML, CSS, JavaScript) or mobile app development (iOS, Android) is a plus.
Ability to work collaboratively in a team environment.
Leuwint Technologies Hiring IT Intern
Completed a degree in Computer Science, Software Engineering, or a related field.(2022- 2024 pass out)
Proficiency in at least one programming language, such as Java, Python, C++, JavaScript, or similar.
Familiarity with web development (HTML, CSS, JavaScript) or mobile app development (iOS, Android) is a plus.
Ability to work collaboratively in a team environment.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name : Autodesk
Batches : 2025,2026 passouts
Internship and Apprenticeship Program details
Register here : https://forms.office.com/pages/responsepage.aspx?id=nve_Z5F_M0So5cklLS3cHfVqUB1IYMFAl5HYFnwntqJURjIyRzJWMVhMMFNQVjdEUE1YS0JFQk02MC4u&origin=QRCode&route=shorturl
Batches : 2025,2026 passouts
Internship and Apprenticeship Program details
Register here : https://forms.office.com/pages/responsepage.aspx?id=nve_Z5F_M0So5cklLS3cHfVqUB1IYMFAl5HYFnwntqJURjIyRzJWMVhMMFNQVjdEUE1YS0JFQk02MC4u&origin=QRCode&route=shorturl
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name : DE Shaw and Group
Batch : 2024 passouts eligible
CTC : 33-35 LPA
Link :
AQAE/QAE: https://www.deshawindia.com/careers/associate-qae-qte-fte-off-campus-2024-grads-5482
SDE: https://www.deshawindia.com/careers/all-positions-in-software-development-2614
Batch : 2024 passouts eligible
CTC : 33-35 LPA
Link :
AQAE/QAE: https://www.deshawindia.com/careers/associate-qae-qte-fte-off-campus-2024-grads-5482
SDE: https://www.deshawindia.com/careers/all-positions-in-software-development-2614
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
https://docs.google.com/forms/d/e/1FAIpQLSeWsmzBh7hm1Zf0LacNJB_maZTTa7efBzgcMyK2XIagfXeptg/viewform
Scientific Software Developer_ Job Application Form
Scientific Software Developer_ Job Application Form
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
Kaspro Solutions Pvt Ltd hiring Software Engineer Intern in Chandigarh, India | LinkedIn
Posted 9:50:24 AM. Company DescriptionSince its establishment in 2010, Kaspro IT has been a global leader in contractโฆ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)
Linkedin
SWIL - SwilERP for Retail & Distribution hiring MERN Full Stack Interns in Jaipur, Rajasthan, India | LinkedIn
Posted 9:09:44 AM. Company Description Welcome to Softworld (India) Pvt. Ltd. (SWIL) โ Your Trusted Retail andโฆ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)
https://www.linkedin.com/jobs/view/4020399900/
Appinventiv Hiring Software Engineer Intern
Currently pursuing a degree in Computer Science, Engineering, or a related field.
Familiarity with programming languages such as Java, Python, C++, or JavaScript.
Basic understanding of software development principles and methodologies.
Strong problem-solving skills and attention to detail.
Ability to work collaboratively in a team environment.
Excellent communication skills and a proactive attitude.
Appinventiv Hiring Software Engineer Intern
Currently pursuing a degree in Computer Science, Engineering, or a related field.
Familiarity with programming languages such as Java, Python, C++, or JavaScript.
Basic understanding of software development principles and methodologies.
Strong problem-solving skills and attention to detail.
Ability to work collaboratively in a team environment.
Excellent communication skills and a proactive attitude.
Linkedin
Appinventiv hiring Software Engineer Intern in Noida, Uttar Pradesh, India | LinkedIn
Posted 1:24:05 PM. Role Overview: As a Software Engineer Intern, you will work closely with our engineering team toโฆSee this and similar jobs on LinkedIn.
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
https://wellfound.com/l/2zwMTy
Oriserve hiring Intern Frontend Engineer
Internship Duration - 6 Months to 1 Year
Location - Noida, Work from Office
Previous experience working as a React.js Intern.
A solid grounding in Computer Science fundamentals (based on a BE/BTech or MS inc Information Technologies/Computer Science)
Strong proficiency with JavaScript and ES6.
Strong understanding of web markup, including HTML5, CSS3.
Proficient understanding of React & Redux and also having familiarity with RESTful APIs & Git.
Oriserve hiring Intern Frontend Engineer
Internship Duration - 6 Months to 1 Year
Location - Noida, Work from Office
Previous experience working as a React.js Intern.
A solid grounding in Computer Science fundamentals (based on a BE/BTech or MS inc Information Technologies/Computer Science)
Strong proficiency with JavaScript and ES6.
Strong understanding of web markup, including HTML5, CSS3.
Proficient understanding of React & Redux and also having familiarity with RESTful APIs & Git.
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Multiple Openings for Freshers/ Experienced
1. Business Analyst (freshers)
2. Business development Executive (freshers)
3. Flutter developer (0-3 years experience)
4. Front office executive (fresher)
5. MERN Stack Developer (1-3 years experience)
6. Full stack developer Laravel, PHP Frameworks (0-3 years experience)
Share Your Resume To:
hr@m8itsolutions.com
Contact: +91 9344660083
1. Business Analyst (freshers)
2. Business development Executive (freshers)
3. Flutter developer (0-3 years experience)
4. Front office executive (fresher)
5. MERN Stack Developer (1-3 years experience)
6. Full stack developer Laravel, PHP Frameworks (0-3 years experience)
Share Your Resume To:
hr@m8itsolutions.com
Contact: +91 9344660083
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Hiring for a Backend + Content Intern at Proelevate.
Prime responsibilities include backend and strong hold over core CS Subjects.
โจRemote Opportunity
Eligibility : 2025,2026 passouts
Apply Link & Details: https://www.proelevate.in/job/backend-developer-proelevate-609847
Prime responsibilities include backend and strong hold over core CS Subjects.
โจRemote Opportunity
Eligibility : 2025,2026 passouts
Apply Link & Details: https://www.proelevate.in/job/backend-developer-proelevate-609847
ProElevate
Your one-stop destination for DSA practice, interview experiences, and career opportunities.