Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Unacademy is hiring for Frontend Engineer (0+ years)
Experience: 0 -1 year's
Expected Salary: 15-25 LPA
Apply here: https://unacademy.darwinbox.in/ms/candidate/careers/a6724730369b58
๐FanCode is hiring for SDE - 1 - DevOps
Experience: 0 -1 year's
Expected Salary: 15-25 LPA
Apply here: https://jobs.lever.co/dreamsports/1a50d199-6d76-4abd-bea6-a691c090eb15/
๐Nirmalya is hiring for Software Support Engineer(Trainee)
Experience: 0 -1 year's
Apply here: https://www.linkedin.com/jobs/view/4062935053/?alternateChannel=search
Experience: 0 -1 year's
Expected Salary: 15-25 LPA
Apply here: https://unacademy.darwinbox.in/ms/candidate/careers/a6724730369b58
๐FanCode is hiring for SDE - 1 - DevOps
Experience: 0 -1 year's
Expected Salary: 15-25 LPA
Apply here: https://jobs.lever.co/dreamsports/1a50d199-6d76-4abd-bea6-a691c090eb15/
๐Nirmalya is hiring for Software Support Engineer(Trainee)
Experience: 0 -1 year's
Apply here: https://www.linkedin.com/jobs/view/4062935053/?alternateChannel=search
jobs.lever.co
Dream Sports - SDE - 1 - DevOps
Technology @ FanCode We have one mission: Create a platform for all sports fans. Built by sports fans for sports fans, we cover Sports Live Video Streaming, Live Scores & Commentary, Video On Demand, Player Analytics, Fantasy Research, News, and very recentlyโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company: Concert AI
Role: Software Engineer
Batch: 2023, 2024
https://careers.concertai.com/us/en/job/COQCONUSP100418EXTERNALENUS/Software-Engineer
Company: HackerRank
Role: Software Development Engineer Intern (Onsite)
Batch: 2025
https://boards.greenhouse.io/hackerrank/jobs/6241442?gh_jid=6241442
Company: Nykaa
Role: SDET Interns
Batch: 2025, 2026
https://www.linkedin.com/jobs/view/4060340967/
Role: Software Engineer
Batch: 2023, 2024
https://careers.concertai.com/us/en/job/COQCONUSP100418EXTERNALENUS/Software-Engineer
Company: HackerRank
Role: Software Development Engineer Intern (Onsite)
Batch: 2025
https://boards.greenhouse.io/hackerrank/jobs/6241442?gh_jid=6241442
Company: Nykaa
Role: SDET Interns
Batch: 2025, 2026
https://www.linkedin.com/jobs/view/4060340967/
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
IIT Ropar is conducting a special Entrance Test for AI Minor Degree
Test is on this Sunday:
https://bit.ly/test-ai-minor
Test is on this Sunday:
https://bit.ly/test-ai-minor
IIT Ropar
Minor in AI from IIT Ropar
Kickstart your career in AI from IIT Ropar, created and taught by IIT professors. Apply Now!
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
https://www.linkedin.com/posts/-divya-porwal_internshipalert-techcareers-softwareengineering-activity-7258033652498866177-J7lu?utm_source=share&utm_medium=member_desktop
2025 and 2026 Batch
2025 and 2026 Batch
Linkedin
Divya Porwal on LinkedIn: #internshipalert #techcareers #softwareengineering #internshipโฆ | 10 comments
๐ Exciting Internship Opportunities for Aspiring Software Engineers! ๐
Some fantastic Software Engineering internship roles for 2025 and 2026 graduates! ๐โฆ | 10 comments on LinkedIn
Some fantastic Software Engineering internship roles for 2025 and 2026 graduates! ๐โฆ | 10 comments on LinkedIn
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
iOS Internship | Jai Nijhawan (iOS)
๐ Exciting Internship Opportunity! ๐
Are you an aspiring iOS developer looking to take your skills to the next level? We have an amazing full-time internship position available with a monthly stipend of INR 20,000.
What you'll gain:
โจ Learn best iOS practicesโฆ
Are you an aspiring iOS developer looking to take your skills to the next level? We have an amazing full-time internship position available with a monthly stipend of INR 20,000.
What you'll gain:
โจ Learn best iOS practicesโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Form Link: https://forms.gle/G1oFMrDmi8rpB8xv8
int findmaximumPackages(vector<int>&arr)
{
int n = arr.size();
int mx = *max_element(arr.begin(), arr.end());
mx = mx * 2;
int res = 0;
map<int, int>mp;
for (auto it : arr) {
mp[it]++;
}
for (int i = 1; i <= mx; i++) {
int sm = 0;
for (int j = 1; j <= (i - 1) / 2; j++) {
sm += min(mp[j], mp[i - j]);
}
if (i % 2 == 0) {
sm += (mp[i / 2] / 2);
}
res = max(res, mp[i] + sm);
}
return res;
}
Amazon โ
{
int n = arr.size();
int mx = *max_element(arr.begin(), arr.end());
mx = mx * 2;
int res = 0;
map<int, int>mp;
for (auto it : arr) {
mp[it]++;
}
for (int i = 1; i <= mx; i++) {
int sm = 0;
for (int j = 1; j <= (i - 1) / 2; j++) {
sm += min(mp[j], mp[i - j]);
}
if (i % 2 == 0) {
sm += (mp[i / 2] / 2);
}
res = max(res, mp[i] + sm);
}
return res;
}
Amazon โ
#include <bits/stdc++.h>
using namespace std;
unordered_map<string, long> g(vector<string>& w) {
unordered_map<string, long> m;
for (const string& x : w) {
string y = x;
sort(y.begin(), y.end());
m[y]++;
}
return m;
}
vector<long> substitutions(vector<string>& w, vector<string>& p) {
unordered_map<string, long> m = g(w);
vector<long> r;
for (const string& q : p) {
stringstream ss(q);
string z;
long c = 1;
while (ss >> z) {
string t = z;
sort(t.begin(), t.end());
c *= m[t];
}
r.push_back(c);
}
using namespace std;
unordered_map<string, long> g(vector<string>& w) {
unordered_map<string, long> m;
for (const string& x : w) {
string y = x;
sort(y.begin(), y.end());
m[y]++;
}
return m;
}
vector<long> substitutions(vector<string>& w, vector<string>& p) {
unordered_map<string, long> m = g(w);
vector<long> r;
for (const string& q : p) {
stringstream ss(q);
string z;
long c = 1;
while (ss >> z) {
string t = z;
sort(t.begin(), t.end());
c *= m[t];
}
r.push_back(c);
}
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
#hiring | Piyush Kansal | 51 comments
Edit - This is closed.
We are looking to onboard 2 SDE Interns at The Product Highway!
If you are a hard-core developer, its time to become an AI-first developer. Learn the new ways of development (tab, tab, tab) and build end to end products from scratch.โฆ
We are looking to onboard 2 SDE Interns at The Product Highway!
If you are a hard-core developer, its time to become an AI-first developer. Learn the new ways of development (tab, tab, tab) and build end to end products from scratch.โฆ
#include <bits/stdc++.h>
using namespace std;
#define ll long long
vector<ll> msk(1024,-1);
void digits(ll num1) {
string str1 = to_string(num1);
set<ll>s;
for (char digit : str1) {
ll d=digit-'0';
s.insert(d);
}
ll val=0;
for(auto it:s) val+=(1<<it);
msk[val]=max(msk[val],num1);
}
ll solution(vector<ll>& A) {
for(auto &it:msk) it=-1;
ll ans=-1;
for(auto it:A) digits(it);
for(ll i=1;i<1024;i++){
if(msk[i]==-1) continue;
for(ll j=i+1;j<1024;j++){
if(msk[j]==-1) continue;
ll fl=0;
for(ll k=0;k<10;k++){
if((1<<k)&i){
if((1<<k)&j){
fl=1;
continue;
}
}
}
if(fl) continue;
ans=max(ans,msk[i]+msk[j]);
}
}
return ans;
}
Microsoft โ
def minimizeeffort(e):
n = len(e)
e.sort()
m = {}
s = 0
for i in range(n):
c = e[i]
min_effort = c
for d in range(1, int(c**0.5) + 1):
if c % d == 0:
if d in m:
min_effort = min(min_effort, m[d])
pd = c // d
if pd in m:
min_effort = min(min_effort, m[pd])
m[c] = min_effort
s += min_effort
return s
Amazon โ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
FamPay is hiring for Backend Engineering Intern
Expected Stipend: 4-8 LPA
Apply here: https://jobs.lever.co/fampay/d9d56021-db58-452b-a1d4-8d3f5269e4cb
Expected Stipend: 4-8 LPA
Apply here: https://jobs.lever.co/fampay/d9d56021-db58-452b-a1d4-8d3f5269e4cb
def solution(S, K):
n = len(S)
if K == 0:
return compressLength(S)
res = float('inf')
for i in range(n - K + 1):
newS = S[:i] + S[i + K:]
res = min(res, compressLength(newS))
return res
def compressLength(s):
n = len(s)
if n == 0:
return 0
count = 1
length = 0
for i in range(1, n):
if s[i] == s[i - 1]:
count += 1
else:
length += 1 + (len(str(count)) if count > 1 else 0)
count = 1
length += 1 + (len(str(count)) if count > 1 else 0)
return length
Microsoft โ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company: BreakoutAI
Role: Artificial Intelligence Intern
Batch: College Students any branch
Stipend : 20k to 50k / Month
https://unstop.com/internships/artificial-intelligence-internship-breakoutai-1201230
Role: Artificial Intelligence Intern
Batch: College Students any branch
Stipend : 20k to 50k / Month
https://unstop.com/internships/artificial-intelligence-internship-breakoutai-1201230
Unstop
Artificial Intelligence Internship - BreakoutAI | 1201230 // Unstop
Click the link to apply for Artificial Intelligence Internship at BreakoutAI. | 2024 | 1201230
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Nirmalya is hiring for Software Support Engineer(Trainee)
Experience: 0 -1 year's
Apply here: https://www.linkedin.com/jobs/view/4062935053/?alternateChannel=search
Experience: 0 -1 year's
Apply here: https://www.linkedin.com/jobs/view/4062935053/?alternateChannel=search