Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Texas Instruments for 2022/2021/2020 passouts.
CTC : 32 Lakhs
Do send it to core ECE students! ๐
https://ti.wecreateproblems.com/
CTC : 32 Lakhs
Do send it to core ECE students! ๐
https://ti.wecreateproblems.com/
Campus Placements @ TI
Register for the Campus Placements @ TIโs hiring drive. Apply for Analog & Digital engineering roles.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
https://www.linkedin.com/posts/priyanshu-panwar_samsung-srib-job-activity-6947446398439014400-FfGC?utm_source=linkedin_share&utm_medium=android_app
If want they go and ask for referral
If want they go and ask for referral
๐2
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Publicis Sapient Hackathon
Batch eligible: 2023 and 2024 passouts
Round 1: Online Quiz Round 2: Online Coding Challenge Round 3: Jumpstart
Apply Link:
https://lnkd.in/dc6PDYwH
Note : Last day of Registration is Ist July, 2022
Batch eligible: 2023 and 2024 passouts
Round 1: Online Quiz Round 2: Online Coding Challenge Round 3: Jumpstart
Apply Link:
https://lnkd.in/dc6PDYwH
Note : Last day of Registration is Ist July, 2022
Unstop
Jumpstart by Publicis Sapient! | 2022 // Unstop (formerly Dare2Compete)
Jumpstart a hackathons by Publicis Sapient open to Engineering Students, Undergraduate, Postgraduate Apply online before 2022-07-02 10:00:27! | 2022
๐2
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Only for those who had given TCS NQT in the past.
Hitachi Vantara
Role: Associate
Batch eligible: 2022 passouts only
CTC: 5LPA (including 5% variable pay)
Link: https://learning.tcsionhub.in/jobs/HITACHI-VANTARA-INDIA-PRIVATE-LIMITED/Associate-2434/
Hitachi Vantara
Role: Associate
Batch eligible: 2022 passouts only
CTC: 5LPA (including 5% variable pay)
Link: https://learning.tcsionhub.in/jobs/HITACHI-VANTARA-INDIA-PRIVATE-LIMITED/Associate-2434/
learning.tcsionhub.in
Associate
We are looking for young, energetic, and dynamic candidates who have great passion for technology. The candidates should be extremely good at coding and...
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
L&T Technology Services
Batch eligible: 2021 and 2022 passouts
(Only Aerospace and Mechanical passouts)
Apply Link: https://docs.google.com/forms/d/e/1FAIpQLSdSohdaRyZdm6iVIfLzjqaknRpSe09XJB192oKtp4MBb9k6QA/viewform
Share this opportunity among your friends who are from Aerospace and Mechanical branch.
#HelpEveryone
Batch eligible: 2021 and 2022 passouts
(Only Aerospace and Mechanical passouts)
Apply Link: https://docs.google.com/forms/d/e/1FAIpQLSdSohdaRyZdm6iVIfLzjqaknRpSe09XJB192oKtp4MBb9k6QA/viewform
Share this opportunity among your friends who are from Aerospace and Mechanical branch.
#HelpEveryone
Google Docs
B.Tech in Aerospace OR Mechanical
As placement for 2023 batch is coming, so what u guys want from me....
Like resume review, mock interview, interview experience or any other thing which you guys want, feel free to tell in comment, I will try to help till what I can ๐โ
Like resume review, mock interview, interview experience or any other thing which you guys want, feel free to tell in comment, I will try to help till what I can ๐โ
https://practice.geeksforgeeks.org/problems/rat-in-a-maze-problem/1
โ โ โ โ โ โ โ โ โ โ โ
javascript sol using recursion
Code
_------------------------------------
let solve =(m,n,c,res,i,j)=>{
//base case
if (i==n-1 && j==n-1){
res.push(c);
return ;
}
let val = m[i][j]
m[i][j]=-1
// right
if (j+1<n && m[i][j+1]==1){
solve(m,n,c+"R",res,i,j+1);
}
// down
if (i+1<n && m[i+1][j]==1){
solve(m,n,c+"D",res,i+1,j);
}
// up
if (i-1>=0 && m[i-1][j]==1){
solve(m,n,c+"U",res,i-1,j);
}
//left
if (j-1>=0 && m[i][j-1]==1){
solve(m,n,c+"L",res,i,j-1);
}
m[i][j]=val;
}
class Solution {
findPath(m,n){
//code here
let c="";
let res=[];
let i=0,j=0;
if (m[0][0]==0){
return res;
}
solve(m,n,c,res,i,j);
res.sort();
return res;
}
}
โ โ โ โ โ โ โ โ โ โ โ
javascript sol using recursion
Code
_------------------------------------
let solve =(m,n,c,res,i,j)=>{
//base case
if (i==n-1 && j==n-1){
res.push(c);
return ;
}
let val = m[i][j]
m[i][j]=-1
// right
if (j+1<n && m[i][j+1]==1){
solve(m,n,c+"R",res,i,j+1);
}
// down
if (i+1<n && m[i+1][j]==1){
solve(m,n,c+"D",res,i+1,j);
}
// up
if (i-1>=0 && m[i-1][j]==1){
solve(m,n,c+"U",res,i-1,j);
}
//left
if (j-1>=0 && m[i][j-1]==1){
solve(m,n,c+"L",res,i,j-1);
}
m[i][j]=val;
}
class Solution {
findPath(m,n){
//code here
let c="";
let res=[];
let i=0,j=0;
if (m[0][0]==0){
return res;
}
solve(m,n,c,res,i,j);
res.sort();
return res;
}
}
www.geeksforgeeks.org
Rat in a Maze | Practice | GeeksforGeeks
Consider a rat placed at position (0, 0) in an n x n square matrix maze[][]. The rat's goal is to reach the destination at position (n-1, n-1). The rat can move in four possible directions: 'U'(up), 'D'(down), 'L' (left), 'R' (rig
๐3
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Amdocs is hiring (Only female candidates)
CTC: 5LPA + 20k (relocation bonus)
Batch eligible: 2022 passouts only
https://jobs.amdocs.com/job/Bhurai-In-Off-Campus-2022_Women-Drive-MH/902362900/
CTC: 5LPA + 20k (relocation bonus)
Batch eligible: 2022 passouts only
https://jobs.amdocs.com/job/Bhurai-In-Off-Campus-2022_Women-Drive-MH/902362900/
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Eagleview hiring
Role: Software Engineer 1 backend
Batch eligible: 2022 passouts
Apply Link: https://recruit.hirebridge.com/v3/careercenter/v2/details.aspx?jid=579190&cid=7600&locvalue=1093
P.S. Apply through referral for increase your chance๐โ
Role: Software Engineer 1 backend
Batch eligible: 2022 passouts
Apply Link: https://recruit.hirebridge.com/v3/careercenter/v2/details.aspx?jid=579190&cid=7600&locvalue=1093
P.S. Apply through referral for increase your chance๐โ
๐1๐ฑ1
๐ Bhavna Crop Off Campus Drive 2022 : Hiring for Freshers as Software Engineers/Developers With 5.5 LPA
* Job Role : Software Engineers/Developers
* Qualification : B.E/B.Tech/MCA
* Experience : Freshers
* Salary : Rs 5.5 LPA
https://www.firstnaukri.com/careers/customised/landingpage/bhavna-corp/index.html
* Job Role : Software Engineers/Developers
* Qualification : B.E/B.Tech/MCA
* Experience : Freshers
* Salary : Rs 5.5 LPA
https://www.firstnaukri.com/careers/customised/landingpage/bhavna-corp/index.html
๐ PhonePe-Off-Campus-Drive-For-Freshers With 5 LPA+
* Job Role : Multiple Openings
* Qualification : B.E/B.Tech
* Batch : 2022 and below graduates
* Job Location : Bangalore
* Package : 5 LPA+
https://assessment.hackerearth.com/challenges/hiring/phonepe-hiring-challenge/
* Job Role : Multiple Openings
* Qualification : B.E/B.Tech
* Batch : 2022 and below graduates
* Job Location : Bangalore
* Package : 5 LPA+
https://assessment.hackerearth.com/challenges/hiring/phonepe-hiring-challenge/
HackerEarth
PhonePe SDET Hiring Challenge
Objective: To build a strong team of SDET(Automation).
This challenge will test individuals on Problem Solving related to Algorithms and Data Structures. One coding question will be of Easy complexity. The Medium question will include bonus weightage.โฆ
This challenge will test individuals on Problem Solving related to Algorithms and Data Structures. One coding question will be of Easy complexity. The Medium question will include bonus weightage.โฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Evalground is hiring
Batch eligible: 2022, 2023 and 2024 passouts
Stipend: 15K to 18K per month.
P.S. Highly recommend for 2023 and 2024 batch for intern ๐โ
Test Link: https://evalground.com/code4/#/publicview/test/candidate/token/anyamtwc
Apply Link: https://www.linkedin.com/jobs/view/3141037144
Batch eligible: 2022, 2023 and 2024 passouts
Stipend: 15K to 18K per month.
P.S. Highly recommend for 2023 and 2024 batch for intern ๐โ
Test Link: https://evalground.com/code4/#/publicview/test/candidate/token/anyamtwc
Apply Link: https://www.linkedin.com/jobs/view/3141037144
Linkedin
EvalGround hiring Software Engineer Intern in India | LinkedIn
Posted 7:28:02 AM. Greetings from Evalground Software Private Limited Bangalore. A brief about the role:1. We areโฆSee this and similar jobs on LinkedIn.
๐1
โ
โ
โ
The Final Element - HackerEarth - Solution - PhonePe SET
https://assessment.hackerearth.com/challenges/hiring/phonepe-hiring-challenge/
https://assessment.hackerearth.com/challenges/hiring/phonepe-hiring-challenge/
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
D Cube Analytics is hiring for 2022 grad.
https://docs.google.com/forms/d/e/1FAIpQLSdd3Z_LsxAQpDx6lhgcVPtimqiZicNXr84tWgVLkm-lKWx6uQ/viewform
https://docs.google.com/forms/d/e/1FAIpQLSdd3Z_LsxAQpDx6lhgcVPtimqiZicNXr84tWgVLkm-lKWx6uQ/viewform
long long solve(int N, vector<int> A)
{
vector<long long> vec1, vec2(N);
int max_so_far = 0, max_ending_here = 0;
vec1.push_back(0);
vec2.push_back(0);
for (int i = 0; i < A.size(); i++)
{
max_so_far += A[i];
if (max_so_far > max_ending_here)
max_ending_here = max_so_far;
if (max_so_far < 0)
max_so_far = 0;
vec1.push_back(max_ending_here);
}
max_so_far = 0;
max_ending_here = 0;
for (int i = A.size() - 1; i >= 0; i--)
{
max_so_far += A[i];
if (max_so_far > max_ending_here)
{
max_ending_here = max_so_far;
}
if (max_so_far < 0)
max_so_far = 0;
vec2[i] = max_ending_here;
}
long long ans = 0;
for (int i = 0; i <= N; i++)
{
ans = max(ans, vec1[i] + vec2[i]);
}
return ans;
}
Source - unknown
Phonepe: Two Subarray (C++)โ
{
vector<long long> vec1, vec2(N);
int max_so_far = 0, max_ending_here = 0;
vec1.push_back(0);
vec2.push_back(0);
for (int i = 0; i < A.size(); i++)
{
max_so_far += A[i];
if (max_so_far > max_ending_here)
max_ending_here = max_so_far;
if (max_so_far < 0)
max_so_far = 0;
vec1.push_back(max_ending_here);
}
max_so_far = 0;
max_ending_here = 0;
for (int i = A.size() - 1; i >= 0; i--)
{
max_so_far += A[i];
if (max_so_far > max_ending_here)
{
max_ending_here = max_so_far;
}
if (max_so_far < 0)
max_so_far = 0;
vec2[i] = max_ending_here;
}
long long ans = 0;
for (int i = 0; i <= N; i++)
{
ans = max(ans, vec1[i] + vec2[i]);
}
return ans;
}
Source - unknown
Phonepe: Two Subarray (C++)โ
๐2
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Lowe's India hackathon + chance of interview
Eligible batch: Only 2023 passouts
Selection process:
1) MCQ Challenge
2) Coding Challenge
3) Profile Verification
4) Interview round
Link: https://unstop.com/o/wF3IP1g?lb=Mgx4BsU
Eligible batch: Only 2023 passouts
Selection process:
1) MCQ Challenge
2) Coding Challenge
3) Profile Verification
4) Interview round
Link: https://unstop.com/o/wF3IP1g?lb=Mgx4BsU
Unstop
House of Code (Campus Edition) by Lowe's Companies, Inc.! | 2022 // Unstop (formerly Dare2Compete)
House of Code (Campus Edition) a hackathons by Lowe's Companies, Inc. open to Engineering Students, Undergraduate Apply online before 2022-07-16 11:00:00! | 2022