Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: SmartReach.io
Role: SDE 1
Batch eligible: 2022 and 2023 grads
Apply: https://www.linkedin.com/jobs/view/3690540154
Role: SDE 1
Batch eligible: 2022 and 2023 grads
Apply: https://www.linkedin.com/jobs/view/3690540154
Linkedin
SmartReach.io hiring Software Development Engineer - 1 in India | LinkedIn
Posted 7:39:40 AM. Location: Remote (this is a full-time position)Experience: You are a Fresher (i.e. you graduatedโฆ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)
โ๏ธ Spikewell off Campus Drive 2023 | SDE | Rs 20K Per Month โ๏ธ
๐จโ๐ปJob Role : SDE
๐Qualification : B-tech in CSE & IT/BCA/MCA
๐Batch : 2023
๐ฐSalary : 20K Per Month
https://spikewell.zohorecruit.in/jobs/Careers/62862000001510001/SDE-Intern?
๐จโ๐ปJob Role : SDE
๐Qualification : B-tech in CSE & IT/BCA/MCA
๐Batch : 2023
๐ฐSalary : 20K Per Month
https://spikewell.zohorecruit.in/jobs/Careers/62862000001510001/SDE-Intern?
Happy Independence day Everyone ๐ฎ๐ณ๐ฉ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Rezo
Role: Software Engineer
Batch eligible: 2022 and 2023 grads
Apply: https://rezo.keka.com/careers/jobdetails/44601?source=linkedin
Role: Software Engineer
Batch eligible: 2022 and 2023 grads
Apply: https://rezo.keka.com/careers/jobdetails/44601?source=linkedin
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
NCR Hiring Intern !!
Role - SDE
https://ncr.wd1.myworkdayjobs.com/en-US/ext_apac/job/Intern---Software_R0133946
Role - SDE
https://ncr.wd1.myworkdayjobs.com/en-US/ext_apac/job/Intern---Software_R0133946
from queue import Queue
def solution(N, A, B, M):
degree = [0] * N
for i in range(M):
degree[A[i]] += 1
degree[B[i]] += 1
q = Queue()
for i in range(N):
if degree[i] <= 1:
q.put(i)
seconds = 0
while not q.empty():
q_size = q.qsize()
for i in range(q_size):
vertex = q.get()
for j in range(M):
if A[j] == vertex or B[j] == vertex:
other_vertex = B[j] if A[j] == vertex else A[j]
degree[other_vertex] -= 1
if degree[other_vertex] == 1:
q.put(other_vertex)
seconds += 1
return seconds
Python 3โ
def solution(N, A, B, M):
degree = [0] * N
for i in range(M):
degree[A[i]] += 1
degree[B[i]] += 1
q = Queue()
for i in range(N):
if degree[i] <= 1:
q.put(i)
seconds = 0
while not q.empty():
q_size = q.qsize()
for i in range(q_size):
vertex = q.get()
for j in range(M):
if A[j] == vertex or B[j] == vertex:
other_vertex = B[j] if A[j] == vertex else A[j]
degree[other_vertex] -= 1
if degree[other_vertex] == 1:
q.put(other_vertex)
seconds += 1
return seconds
Python 3โ
#include <iostream>
#include<bits/stdc++.h>
using namespace std;
int main() {
int n;
cin>>n;
vector<int>arr(n);
for(int i=0;i<n;i++)
cin>>arr[i];
int x;
int y;
cin>>x>>y;
int ans=INT_MAX;
for(int i=0;i<y;i++)
{
if(i+(x-1)*y<n)
{
int low=i;
int high=i;
int curr=0;
int count=x;
while(high<n and count>0)
{
curr+=arr[high];
high+=y;
count--;
}
// cout<<curr<<endl;
ans=min(ans,curr);
while(high<n)
{
curr+=arr[high];
curr-=arr[low];
low+=y;
high+=y;
ans=min(ans,curr);
}
}
}
cout<<ans;
return 0;
}
#include<bits/stdc++.h>
using namespace std;
int main() {
int n;
cin>>n;
vector<int>arr(n);
for(int i=0;i<n;i++)
cin>>arr[i];
int x;
int y;
cin>>x>>y;
int ans=INT_MAX;
for(int i=0;i<y;i++)
{
if(i+(x-1)*y<n)
{
int low=i;
int high=i;
int curr=0;
int count=x;
while(high<n and count>0)
{
curr+=arr[high];
high+=y;
count--;
}
// cout<<curr<<endl;
ans=min(ans,curr);
while(high<n)
{
curr+=arr[high];
curr-=arr[low];
low+=y;
high+=y;
ans=min(ans,curr);
}
}
}
cout<<ans;
return 0;
}
public static int numPaths(List<List<Integer>> warehouse) {
int r = warehouse.size(), c = warehouse.get(0).size();
int[][] paths = new int[r][c];
if (warehouse.get(0).get(0) == 1)
paths[0][0] = 1;
for (int i = 1; i < r; i++) {
if (warehouse.get(i).get(0) == 1)
paths[i][0] = paths[i - 1][0];
}
for (int j = 1; j < c; j++) {
if (warehouse.get(0).get(j) == 1)
paths[0][j] = paths[0][j - 1];
}
for (int i = 1; i < r; i++) {
for (int j = 1; j < c; j++) {
if (warehouse.get(i).get(j) == 1)
paths[i][j] = paths[i - 1][j] + paths[i][j - 1];
}
}
return paths[r - 1][c - 1];
}
Paths in warehouse โ
int r = warehouse.size(), c = warehouse.get(0).size();
int[][] paths = new int[r][c];
if (warehouse.get(0).get(0) == 1)
paths[0][0] = 1;
for (int i = 1; i < r; i++) {
if (warehouse.get(i).get(0) == 1)
paths[i][0] = paths[i - 1][0];
}
for (int j = 1; j < c; j++) {
if (warehouse.get(0).get(j) == 1)
paths[0][j] = paths[0][j - 1];
}
for (int i = 1; i < r; i++) {
for (int j = 1; j < c; j++) {
if (warehouse.get(i).get(j) == 1)
paths[i][j] = paths[i - 1][j] + paths[i][j - 1];
}
}
return paths[r - 1][c - 1];
}
Paths in warehouse โ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Startelelogic Walking Interview
Date : 19 Aug 2023
Location : Noida
Exp : 0-1 Years
Link : https://www.linkedin.com/jobs/collections/recommended/?currentJobId=3684445275
Date : 19 Aug 2023
Location : Noida
Exp : 0-1 Years
Link : https://www.linkedin.com/jobs/collections/recommended/?currentJobId=3684445275
Linkedin
Sign Up | LinkedIn
500 million+ members | Manage your professional identity. Build and engage with your professional network. Access knowledge, insights and opportunities.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Vance(YC W22) is hiring for iOS
Fulltime/Intern developers
Apply Link :
https://docs.google.com/forms/d/e/1FAIpQLSdk10CNKxAR2Dmm2PAr59NOvPNw5TRae9ioJmKzF9M_j8MmHA/viewform
Fulltime/Intern developers
Apply Link :
https://docs.google.com/forms/d/e/1FAIpQLSdk10CNKxAR2Dmm2PAr59NOvPNw5TRae9ioJmKzF9M_j8MmHA/viewform
Google Docs
Vance(YC W22) is hiring for iOS Fulltime/Intern developers
Vance is building an innovative neobank for Indian Expats across the world. With a commitment to global expansion, we are expanding our footprints to the UK, UAE, US, and Canada. We have raised $5.8M in fundings from funds like Y Combinator, Soma Capitalโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Magicpin hiring Interns across product, analytics and strategy and ops. This opportunity is for all college students to work remotely along with their colleges.
What we are looking for:
๏ปฟ๏ปฟGood analytical and problem solving skills
๏ปฟ๏ปฟHigh ownership
๏ปฟ๏ปฟAbility to learn quickly
If you are interested, please drop me an email on arshdeep.gulati@magicpin.in
What we are looking for:
๏ปฟ๏ปฟGood analytical and problem solving skills
๏ปฟ๏ปฟHigh ownership
๏ปฟ๏ปฟAbility to learn quickly
If you are interested, please drop me an email on arshdeep.gulati@magicpin.in
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Walk in Interview
Batch :2022/2023
Apply here- https://www.digilogicsystems.com/application-engineer-trainee/
Batch :2022/2023
Apply here- https://www.digilogicsystems.com/application-engineer-trainee/
Digilogic Systems
Quality Test and Automation Solutions - Digilogic Systems
Digilogic Systems Pvt. Ltd. is a leading test and automation service provider for Defence, Aerospace, Automotive and Manufacturing market segments. We offer solutions like Automated Test Equipments, Data Acquisition Systems, Digital receiver systems etc.โฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Siemens Healthineers
Role: Graduate Engineer Trainee
Batch eligible: 2022 and 2023 grads
Apply: https://bit.ly/3qD6Bqo
Role: Graduate Engineer Trainee
Batch eligible: 2022 and 2023 grads
Apply: https://bit.ly/3qD6Bqo
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Ivykids (formerly Yellow Class) hiring a Mernstack developer to join our tech team!
PS - 2023 B.tech batch students are most welcome!
Location - Work from office, Gurgaon.
Interested candidates can share their updated CV at deepanshi@ivypods.com to proceed ahead with the selection process.
PS - 2023 B.tech batch students are most welcome!
Location - Work from office, Gurgaon.
Interested candidates can share their updated CV at deepanshi@ivypods.com to proceed ahead with the selection process.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Hexagon is Hiring !!
Role : Intern
Batch: 2024, 2025
Location: Hyderabad
Apply here- https://careersindia-hexagon.icims.com/jobs/11018/intern/job
Role : Intern
Batch: 2024, 2025
Location: Hyderabad
Apply here- https://careersindia-hexagon.icims.com/jobs/11018/intern/job
Careers IN
Intern in Hyderabad, Telangana | Careers at Hyderabad
Hexagon Capability Center India Private Limited (HCCI) is a subsidiary of Hexagon AB, a global technology company that provides sensor, software, and autonomous solutions to various industries. HCCI operates as a research and development (R&D) center forโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Hiring Opportunities for 2023 and 2024 grads.
1) Media.net is hiring for Research Analyst Intern
2) iSource is hiring for Dot Net Intern
Apply: https://bit.ly/FreshersHiring
P.S: Attempt this contest as your practice test for upcoming online assessments:)
1) Media.net is hiring for Research Analyst Intern
2) iSource is hiring for Dot Net Intern
Apply: https://bit.ly/FreshersHiring
P.S: Attempt this contest as your practice test for upcoming online assessments:)
practice.geeksforgeeks.org
Contest | Job-A-Thon 21: Hiring Challenge
It's time to make the most of this placment season with the August edition to GFG Job-A-Thon! With over 200+ candidates placed in the last Job-a-thon, this free hiring challenge is yet another chance to get placed in top companies. Register Now !
Watchโฆ
Watchโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Mitacs Globalink Research Internship Applications are open.
Fully Funded Research Internship with a Professor in Canada.
Eligible : 2nd and 3rd year students.
Stipend : 5.5 Lakhs
Apply Link
https://www.mitacs.ca/en/programs/globalink/globalink-research-internship
Fully Funded Research Internship with a Professor in Canada.
Eligible : 2nd and 3rd year students.
Stipend : 5.5 Lakhs
Apply Link
https://www.mitacs.ca/en/programs/globalink/globalink-research-internship
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: HCL
Role: Graduate Engineer Trainee
Batch eligible: 2022 and 2023 grads
Apply: https://www.hcltech.com/careers/campus-hiring
Role: Graduate Engineer Trainee
Batch eligible: 2022 and 2023 grads
Apply: https://www.hcltech.com/careers/campus-hiring
Hcltech
Campus Hiring & Recruitment : Supercharge Your Tech Career | HCLTech
HCLTech campus placement offers an inclusive workplace for campus hires, aiming to empower and elevate them. Learn more about our campus hiring details.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: ITC Infotech
Role: Software Engineer
Batch eligible: 2021, 2022 and 2023 grads
Location: Kolkata
If interested, send your resume at parna.dasgupta@itcinfotech.com
Role: Software Engineer
Batch eligible: 2021, 2022 and 2023 grads
Location: Kolkata
If interested, send your resume at parna.dasgupta@itcinfotech.com
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
BlueYonder is Hiring for Associate Software engineer
Location: Bangalore
Apply Link: https://jda.wd5.myworkdayjobs.com/en-US/JDA_Careers/job/Software-Engineer_231482
Location: Bangalore
Apply Link: https://jda.wd5.myworkdayjobs.com/en-US/JDA_Careers/job/Software-Engineer_231482
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Sunlife
Role: Graduate Engineer Trainee
Batch eligible: 2022 and 2023 grads
Apply: https://bit.ly/3si0RD6
Role: Graduate Engineer Trainee
Batch eligible: 2022 and 2023 grads
Apply: https://bit.ly/3si0RD6