Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
The Trade Dask Hiring Summer Intern
Batch : 2024, 2025 passout
Experience: Students
Salary : 50k - 75k per month ( Expected)
Application link : https://careers.thetradedesk.com/jobs/4150177007/2024-summer-internship-software-engineering-bangalore
Batch : 2024, 2025 passout
Experience: Students
Salary : 50k - 75k per month ( Expected)
Application link : https://careers.thetradedesk.com/jobs/4150177007/2024-summer-internship-software-engineering-bangalore
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Axiom Hiring Python Intern
Batch : 2024, 2025 passout
Location: Work from home
Duration: 3 month
Experience: fresher
Salary : 30k - 40k per month ( Expected)
https://www.axiommrc.com/careers/python-intern
Batch : 2024, 2025 passout
Location: Work from home
Duration: 3 month
Experience: fresher
Salary : 30k - 40k per month ( Expected)
https://www.axiommrc.com/careers/python-intern
Axiommrc
Axiom - Market Research, Market Trends, Market Share, Market Insight, Data Analysis
Axiom MRCโs market analysis are driven by a number of primaries conducted with key industry participants having years of industry experience.
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
JAVA Freshers Referrals!
https://www.linkedin.com/posts/pooja-katyal-206149140_hiring-javadevelopment-javadeveloper-activity-7135215357299933184-VyJh?utm_source=share&utm_medium=member_desktop
https://www.linkedin.com/posts/pooja-katyal-206149140_hiring-javadevelopment-javadeveloper-activity-7135215357299933184-VyJh?utm_source=share&utm_medium=member_desktop
Linkedin
Pooja Katyal on LinkedIn: #hiring #javadevelopment #javadeveloper #java #developmentโฆ | 653 comments
We are #hiring for a JAVA Freshers position.
Location: Noida
Work from office opportunity
Job Description -
1. Should have been trained on Core and Advanceโฆ | 653 comments on LinkedIn
Location: Noida
Work from office opportunity
Job Description -
1. Should have been trained on Core and Advanceโฆ | 653 comments on LinkedIn
int solution(vector<string> &board)
{
const size_t n = board.size();
const size_t m = board[0].size();
int res = 0;
// Initialize a prefix sum array to store counts of 'A's and 'B's
vector<vector<int>> prefixA(n + 1, vector<int>(m + 1, 0));
vector<vector<int>> prefixB(n + 1, vector<int>(m + 1, 0));
// Compute the prefix sums for 'A's and 'B's
for (size_t i = 1; i <= n; ++i) {
for (size_t j = 1; j <= m; ++j) {
prefixA[i][j] = prefixA[i - 1][j] + prefixA[i][j - 1] - prefixA[i - 1][j - 1];
prefixB[i][j] = prefixB[i - 1][j] + prefixB[i][j - 1] - prefixB[i - 1][j - 1];
if (board[i - 1][j - 1] == 'A') {
prefixA[i][j]++;
} else if (board[i - 1][j - 1] == 'B') {
prefixB[i][j]++;
}
if (prefixA[i][j] == prefixB[i][j]) res++;
}
}
return res;
}
{
const size_t n = board.size();
const size_t m = board[0].size();
int res = 0;
// Initialize a prefix sum array to store counts of 'A's and 'B's
vector<vector<int>> prefixA(n + 1, vector<int>(m + 1, 0));
vector<vector<int>> prefixB(n + 1, vector<int>(m + 1, 0));
// Compute the prefix sums for 'A's and 'B's
for (size_t i = 1; i <= n; ++i) {
for (size_t j = 1; j <= m; ++j) {
prefixA[i][j] = prefixA[i - 1][j] + prefixA[i][j - 1] - prefixA[i - 1][j - 1];
prefixB[i][j] = prefixB[i - 1][j] + prefixB[i][j - 1] - prefixB[i - 1][j - 1];
if (board[i - 1][j - 1] == 'A') {
prefixA[i][j]++;
} else if (board[i - 1][j - 1] == 'B') {
prefixB[i][j]++;
}
if (prefixA[i][j] == prefixB[i][j]) res++;
}
}
return res;
}
vector<int> solve(int n, vector<string>& logs) {
vector<int> eT(n, 0);
stack<pair<int, int>> fS;
for (const string& l : logs) {
stringstream s(l);
string t;
vector<string> ts;
while (getline(s, t, ':')) {
ts.push_back(t);
}
int f = stoi(ts[0]);
string a = ts[1];
int tm = stoi(ts[2]);
if (a == "start") {
fS.push({f, tm});
} else {
int eTm = tm - fS.top().second + 1;
eT[f] += eTm;
fS.pop();
if (!fS.empty()) {
eT[fS.top().first] -= eTm;
}
}
}
return eT;
}
Co prime CPU โ
vector<int> eT(n, 0);
stack<pair<int, int>> fS;
for (const string& l : logs) {
stringstream s(l);
string t;
vector<string> ts;
while (getline(s, t, ':')) {
ts.push_back(t);
}
int f = stoi(ts[0]);
string a = ts[1];
int tm = stoi(ts[2]);
if (a == "start") {
fS.push({f, tm});
} else {
int eTm = tm - fS.top().second + 1;
eT[f] += eTm;
fS.pop();
if (!fS.empty()) {
eT[fS.top().first] -= eTm;
}
}
}
return eT;
}
Co prime CPU โ
long long g[1000001],f[1000001],res=0;
int n,k,m,l,r,c,p;
vector<pair<int,int> > v[1000001 +7];
void upd(int id,int num,long long money)
{
for(int cin=id;cin<1000001;cin=cin+(cin&-cin))f[cin]+=num,g[cin]+=money;
}
long long get()
{
int cur=0,tar=k;
long long res=0;
for(int cin=19;cin>=0;cin--)
if(cur+(1<<cin)<1000001&&tar>f[cur+(1<<cin)])
{
tar-=f[cur+(1<<cin)];
res+=g[cur+(1<<cin)];
cur+=(1<<cin);
}
if(tar&&cur<1000001 -1)res+=1LL*(cur+1)*tar;
return res;
}
int solution(int n, int k, const vector<vector<int>> &plans)
{
for(int i = 0; i <= n; i++) v[i].clear();
fill(g, g+n+1, 0);
fill(f, f+n+1, 0);
for (const auto &plan : plans) {
int l = plans[0], r = plans[1], c = plans[2], p = plans[3];
v[l].push_back(pair<int,int>(c,p));
v[r+1].push_back(pair<int,int>(-c,p));
}
for(int i=1;i<=n;i++)
{
int sz=v[i].size();
for(int j=0;j<sz;j=j+1)upd(v[i][j].second,v[i][j].first,1LL*v[i][j].first*v[i][j].second);
res+=get();
}
return res;
}
IBM โ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Coinbase
Role: Software Engineer Intern
Batch eligible: 2024 and 2025 passouts
Apply: https://www.coinbase.com/careers/positions/5466500?gh_jid=5466500&gh_src=20687b321us
Role: Software Engineer Intern
Batch eligible: 2024 and 2025 passouts
Apply: https://www.coinbase.com/careers/positions/5466500?gh_jid=5466500&gh_src=20687b321us
Coinbase
Not found - Coinbase
Coinbase is a secure online platform for buying, selling, transferring, and storing cryptocurrency.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
HireQuotient is looking for Frontend Interns
Duration: 3-6 months
Interested Candidates can feel this form: https://docs.google.com/forms/d/e/1FAIpQLSezUh37kB8_c7t0v4KOQFG49a6Lzxo-hfZTxaVoMHRLz3nADQ/viewform
Duration: 3-6 months
Interested Candidates can feel this form: https://docs.google.com/forms/d/e/1FAIpQLSezUh37kB8_c7t0v4KOQFG49a6Lzxo-hfZTxaVoMHRLz3nADQ/viewform
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name : Uber
Role : SDE Internship - UberStar Internship
Eligibility : 2026 passouts - PwD Candidates ( Persons with Disabilities only)
Stipend : 1,10,000 INR/month
Link : https://bit.ly/40XXdLW
Role : SDE Internship - UberStar Internship
Eligibility : 2026 passouts - PwD Candidates ( Persons with Disabilities only)
Stipend : 1,10,000 INR/month
Link : https://bit.ly/40XXdLW
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company name : Microsoft
Role: SDE
Exp : Freshers
https://www.linkedin.com/posts/shivam-sharma-630a68194_fill-referral-form-activity-7126539515518697474-HlcJ?utm_source=share&utm_medium=member_ios
Role: SDE
Exp : Freshers
https://www.linkedin.com/posts/shivam-sharma-630a68194_fill-referral-form-activity-7126539515518697474-HlcJ?utm_source=share&utm_medium=member_ios
Linkedin
Fill | Referral Form | Shivam Sharma | 68 comments
Hello Freshers !!
Microsoft came with a cool breeze in this time of recession. Microsoft is hiring Freshers(University Graduate).
Job link - https://lnkd.in/dPrc3EWA
Fill out the form for referral - https://lnkd.in/dVb2v7yD
All the best ๐๐ป
#microsoftโฆ
Microsoft came with a cool breeze in this time of recession. Microsoft is hiring Freshers(University Graduate).
Job link - https://lnkd.in/dPrc3EWA
Fill out the form for referral - https://lnkd.in/dVb2v7yD
All the best ๐๐ป
#microsoftโฆ
Role :- Data Engineer
Skills required:- Python, SQL, Spark , AWS , Snowflake
Experience required:- 2 years+
Company:- A Delhi based startup
Salary (11 Lpa+ )
send your resume:-
https://www.linkedin.com/in/mradaltiwari
Skills required:- Python, SQL, Spark , AWS , Snowflake
Experience required:- 2 years+
Company:- A Delhi based startup
Salary (11 Lpa+ )
send your resume:-
https://www.linkedin.com/in/mradaltiwari
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Trellix is hiring for Software Engineer Intern role (2024 passouts only)
Job ID: JR0032562
Try to connect with any trellix employee and please try to go with referral
Job ID: JR0032562
Try to connect with any trellix employee and please try to go with referral
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Amazon is hiring for Application Engineer role (2021 and 2022 grads only)
If Interested, fill this referral form: https://forms.gle/Uqc4iZ4fBPS7SMwP8
Note: Notice Period <= 60 days only
If Interested, fill this referral form: https://forms.gle/Uqc4iZ4fBPS7SMwP8
Note: Notice Period <= 60 days only
Google Docs
Amazon Hiring (Referral Form)
Role: Application Engineer
Batch eligible: <=2022 grads and not fresher's
Notice Period: <= 60 days
Job Description:
BASIC QUALIFICATIONS
- 1+ years of software development, or 1+ years of technical support experience
- Experience troubleshooting and debuggingโฆ
Batch eligible: <=2022 grads and not fresher's
Notice Period: <= 60 days
Job Description:
BASIC QUALIFICATIONS
- 1+ years of software development, or 1+ years of technical support experience
- Experience troubleshooting and debuggingโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name : Ridecell
Batch : 2024/2023 passouts
Role : SDE Internship ( Backend and QA)
Link : https://docs.google.com/forms/d/e/1FAIpQLScT2gdgW-LQMThkFGlhi6LI3lmJp127-TaSus1rWwpdI_g7sQ/viewform
Batch : 2024/2023 passouts
Role : SDE Internship ( Backend and QA)
Link : https://docs.google.com/forms/d/e/1FAIpQLScT2gdgW-LQMThkFGlhi6LI3lmJp127-TaSus1rWwpdI_g7sQ/viewform
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Exciting Opportunity for Fresh Graduates - Graduate Engineer Trainees (GETs)
We are thrilled to announce an excellent career opportunity for fresh graduates who are passionate about building a rewarding career in steel industry. As we continue to grow and innovate, we are actively seeking talented and ambitious individuals to join our team as Graduate Engineer Trainees (GETs).
Why Join Us:
1. Comprehensive training program
2. Mentorship from industry experts
3. Opportunities for career advancement
4. Dynamic and collaborative work environment
How to Apply:
If you are ready to kick-start your career with a dynamic and forward-thinking organization, fill the form
https://docs.google.com/forms/d/e/1FAIpQLSfWQyLXfPGFb-stCbYiSIPZaCTHh8grXdt_rSfJ0naWpxolKg/viewform
We are thrilled to announce an excellent career opportunity for fresh graduates who are passionate about building a rewarding career in steel industry. As we continue to grow and innovate, we are actively seeking talented and ambitious individuals to join our team as Graduate Engineer Trainees (GETs).
Why Join Us:
1. Comprehensive training program
2. Mentorship from industry experts
3. Opportunities for career advancement
4. Dynamic and collaborative work environment
How to Apply:
If you are ready to kick-start your career with a dynamic and forward-thinking organization, fill the form
https://docs.google.com/forms/d/e/1FAIpQLSfWQyLXfPGFb-stCbYiSIPZaCTHh8grXdt_rSfJ0naWpxolKg/viewform
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: One Card
Role: Software Engineer - Backend
Batch eligible: 2022, 2023 and 2024 passouts
Apply: https://bit.ly/47YKevR
Role: Software Engineer - Backend
Batch eligible: 2022, 2023 and 2024 passouts
Apply: https://bit.ly/47YKevR
Codingninjas
Coding Ninjas Studio Weekend Contest 101 Coding Contest- Coding Ninjas
Level up your coding skills and quickly land a job with the Coding Ninjas Studio Contests every week. Compete and see your ranking!
๐1