#include <iostream>
#include <vector>
#include <map>
using namespace std;
void findPerm(vector<int>& nums) {
int N = nums.size();
map<int, int> hashmap;
for (int num : nums) {
if (num >= 1 && num <= N) {
hashmap[num]++;
} else {
hashmap[num] = 1e9;
}
}
vector<int> missing;
for (int num = N; num >= 1; num--) {
if (!hashmap.count(num)) {
missing.push_back(num);
}
}
for (int& num : nums) {
if(missing.size()==0) break;
if (--hashmap[num] > 0) {
num = missing.back();
missing.pop_back();
}
hashmap[num]--;
}
}
DE Shaw โ
#include <vector>
#include <map>
using namespace std;
void findPerm(vector<int>& nums) {
int N = nums.size();
map<int, int> hashmap;
for (int num : nums) {
if (num >= 1 && num <= N) {
hashmap[num]++;
} else {
hashmap[num] = 1e9;
}
}
vector<int> missing;
for (int num = N; num >= 1; num--) {
if (!hashmap.count(num)) {
missing.push_back(num);
}
}
for (int& num : nums) {
if(missing.size()==0) break;
if (--hashmap[num] > 0) {
num = missing.back();
missing.pop_back();
}
hashmap[num]--;
}
}
DE Shaw โ
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int minimizeMismatchScore(string& s1, string& s2, int x, int y) {
int m = s1.size();
int n = s2.size();
vector<vector<int>> dp(m + 1, vector<int>(n + 1, 0));
for (int i = 1; i <= m; ++i) {
dp[i][0] = i * x;
}
for (int j = 1; j <= n; ++j) {
dp[0][j] = j * x;
}
for (int i = 1; i <= m; ++i) {
for (int j = 1; j <= n; ++j) {
if (s1[i - 1] == s2[j - 1]) {
dp[i][j] = dp[i - 1][j - 1];
} else {
dp[i][j] = min({ dp[i - 1][j] + x, dp[i][j - 1] + x, dp[i - 1][j - 1] + y });
}
}
}
return dp[m][n];
}
DE Shaw โ
#include <vector>
#include <algorithm>
using namespace std;
int minimizeMismatchScore(string& s1, string& s2, int x, int y) {
int m = s1.size();
int n = s2.size();
vector<vector<int>> dp(m + 1, vector<int>(n + 1, 0));
for (int i = 1; i <= m; ++i) {
dp[i][0] = i * x;
}
for (int j = 1; j <= n; ++j) {
dp[0][j] = j * x;
}
for (int i = 1; i <= m; ++i) {
for (int j = 1; j <= n; ++j) {
if (s1[i - 1] == s2[j - 1]) {
dp[i][j] = dp[i - 1][j - 1];
} else {
dp[i][j] = min({ dp[i - 1][j] + x, dp[i][j - 1] + x, dp[i - 1][j - 1] + y });
}
}
}
return dp[m][n];
}
DE Shaw โ
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
public static int minsteps(List<Integer> cityMap, int rows, int cols, int maxsteps) {
int[][] grid = new int[rows][cols];
for (int i = 0; i < rows; i++) {
for (int j = 0; j < cols; j++) {
grid[i][j] = cityMap.get(i * cols + j);
}
}
int[][] dp = new int[rows][cols];
for (int[] row : dp) {
Arrays.fill(row, Integer.MAX_VALUE);
}
dp[0][0] = 0;
int[] dx = {-1, 1, 0, 0};
int[] dy = {0, 0, -1, 1};
for (int steps = 0; steps <= maxsteps; steps++) {
for (int i = 0; i < rows; i++) {
for (int j = 0; j < cols; j++) {
if (dp[i][j] == Integer.MAX_VALUE) continue;
for (int k = 0; k < 4; k++) {
int ni = i + dx[k];
int nj = j + dy[k];
if (ni >= 0 && ni < rows && nj >= 0 && nj < cols && grid[ni][nj] == 0) {
dp[ni][nj] = Math.min(dp[ni][nj], dp[i][j] + 1);
}
}
}
}
}
if (dp[rows - 1][cols - 1] == Integer.MAX_VALUE) {
return -1;
} else {
return dp[rows - 1][cols - 1];
}
}
Urban Navigator โ
int[][] grid = new int[rows][cols];
for (int i = 0; i < rows; i++) {
for (int j = 0; j < cols; j++) {
grid[i][j] = cityMap.get(i * cols + j);
}
}
int[][] dp = new int[rows][cols];
for (int[] row : dp) {
Arrays.fill(row, Integer.MAX_VALUE);
}
dp[0][0] = 0;
int[] dx = {-1, 1, 0, 0};
int[] dy = {0, 0, -1, 1};
for (int steps = 0; steps <= maxsteps; steps++) {
for (int i = 0; i < rows; i++) {
for (int j = 0; j < cols; j++) {
if (dp[i][j] == Integer.MAX_VALUE) continue;
for (int k = 0; k < 4; k++) {
int ni = i + dx[k];
int nj = j + dy[k];
if (ni >= 0 && ni < rows && nj >= 0 && nj < cols && grid[ni][nj] == 0) {
dp[ni][nj] = Math.min(dp[ni][nj], dp[i][j] + 1);
}
}
}
}
}
if (dp[rows - 1][cols - 1] == Integer.MAX_VALUE) {
return -1;
} else {
return dp[rows - 1][cols - 1];
}
}
Urban Navigator โ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Synchrony Walkin | Apprentice @ Hyderabad
Qualification: 10+2, Any Graduation
Experience: 0 to 1 year
Stipend: Rs. 29,000/- month + 4000 (Night Shift Allowance) + 1100 (Broadband Reimbursement)
Walkin Date: 24th June 2024
Walkin Time: 11.00 AM to 2.00 PM
More Details:
https://www.naukri.com/job-listings-walk-in-drive-for-apprentice-program-representative-synchrony-hyderabad-0-to-1-years-140624006156?
Qualification: 10+2, Any Graduation
Experience: 0 to 1 year
Stipend: Rs. 29,000/- month + 4000 (Night Shift Allowance) + 1100 (Broadband Reimbursement)
Walkin Date: 24th June 2024
Walkin Time: 11.00 AM to 2.00 PM
More Details:
https://www.naukri.com/job-listings-walk-in-drive-for-apprentice-program-representative-synchrony-hyderabad-0-to-1-years-140624006156?
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Qualification: Any Graduation, MBA
Batch: 2021, 2022, 2023, 2024
Walkin Date: 18th to 21st June 2024
Walkin Time: 10.30 AM to 12.30 PM
More Details:
https://www.naukri.com/job-listings-wipro-walk-in-drive-for-freshers-gachibowli-campus-wipro-hyderabad-0-to-0-years-100624002271
Batch: 2021, 2022, 2023, 2024
Walkin Date: 18th to 21st June 2024
Walkin Time: 10.30 AM to 12.30 PM
More Details:
https://www.naukri.com/job-listings-wipro-walk-in-drive-for-freshers-gachibowli-campus-wipro-hyderabad-0-to-0-years-100624002271
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Scaler
๐ Job Title: Technical Content Writer
โ๐ป YOE: 2024 grads or later
โก๏ธ Apply: https://interviewbit.darwinbox.in/ms/candidate/careers/a6671616ab9376
Please do share in your college grps and in case you are applying please react on this post:) ๐โค๏ธ
๐ Job Title: Technical Content Writer
โ๐ป YOE: 2024 grads or later
โก๏ธ Apply: https://interviewbit.darwinbox.in/ms/candidate/careers/a6671616ab9376
Please do share in your college grps and in case you are applying please react on this post:) ๐โค๏ธ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Intervue.io is hiring SDE Intern
This company was featured in Shark Tank S3. ๐
For 2023, 2024, 2025 grads
Check out this job at Intervue.io: https://www.linkedin.com/jobs/view/3952536498
This company was featured in Shark Tank S3. ๐
For 2023, 2024, 2025 grads
Check out this job at Intervue.io: https://www.linkedin.com/jobs/view/3952536498
Linkedin
Intervue.io hiring SDE Intern in Bengaluru, Karnataka, India | LinkedIn
Posted 8:11:19 AM. About:Intervue is on a mission to streamline the entire interviewing process from screening toโฆ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)
Urban Company is hiring SDE-1
For 2024, 2023, 2022 grads
Expected CTC - 25LPA
https://careers.urbancompany.com/jobDetail?id=9af0656f-fad3-421a-802e-caf1591f8a4f
For 2024, 2023, 2022 grads
Expected CTC - 25LPA
https://careers.urbancompany.com/jobDetail?id=9af0656f-fad3-421a-802e-caf1591f8a4f
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Infosys Off Campus Hiring Fresher for DSE. And SP
Location : Across India
Qualification : BE/B.Tech/M.E/M.Tech/MCA/MSC
Work Experience : Fresher
https://surveys.infosysapps.com/r/a/Infosys_SPhiring_24BATCH
Location : Across India
Qualification : BE/B.Tech/M.E/M.Tech/MCA/MSC
Work Experience : Fresher
https://surveys.infosysapps.com/r/a/Infosys_SPhiring_24BATCH
Infosysapps
Infosys | Surveys
Create Surveys. Collect feedback through a computer assisted, Mobile friendly method. Design Surveys, Send Request , Analyze response and more ...
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Swiggy - Associate Software Development Engineer in Test
https://docs.google.com/forms/d/1LmNVDVxBGAm9Dxx5PckQoPACj4Px8o3tKKGR_zfW5n8/viewform?edit_requested=true
https://docs.google.com/forms/d/1LmNVDVxBGAm9Dxx5PckQoPACj4Px8o3tKKGR_zfW5n8/viewform?edit_requested=true
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
United's Digital Technology is hiring for Associate Engineer
Expected Salary: 5-8 LPA
Apply here:
https://careers.united.com/us/en/job/UAIUADUSGGN00001393EXTERNALENUSTALEO/Associate-Engineer
Expected Salary: 5-8 LPA
Apply here:
https://careers.united.com/us/en/job/UAIUADUSGGN00001393EXTERNALENUSTALEO/Associate-Engineer
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Accenture Hack Diva
https://indiacampus.accenture.com/events/hackdiva/
https://indiacampus.accenture.com/events/hackdiva/
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Urban
๐ Job Title: SDE - 1
โ๐ป YOE: 0-2 years
โก๏ธ Apply: https://careers.urbancompany.com/jobDetail?id=9af0656f-fad3-421a-802e-caf1591f8a4f
Please do share in your college grps and in case you are applying please react on this post:) ๐โค๏ธ
๐ Job Title: SDE - 1
โ๐ป YOE: 0-2 years
โก๏ธ Apply: https://careers.urbancompany.com/jobDetail?id=9af0656f-fad3-421a-802e-caf1591f8a4f
Please do share in your college grps and in case you are applying please react on this post:) ๐โค๏ธ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Empower is hiring for Assoc Engineer Software (0-1 years)
Expected Salary: 5-8 LPA
Apply here:
https://jobs.empower.com/job/-/-/42743/66495432032
Expected Salary: 5-8 LPA
Apply here:
https://jobs.empower.com/job/-/-/42743/66495432032
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Opening for Analyst at WIPRO Gurgaon.
Candidates with an experience range of 0 - 1 yr. Only, comfortable with US shifts, can send their CV's to shubhangi.mishra@wipro.com with the below details.
Role- Analyst
Should be flexible working in Shifts.
Experience- 0 yrs. to 1 yrs.
Qualification- MBA/M.com/ B.com/BBA.
Location- Gurgaon (Work From Office Only)
Looking for Immediate Joiners
Candidates with an experience range of 0 - 1 yr. Only, comfortable with US shifts, can send their CV's to shubhangi.mishra@wipro.com with the below details.
Role- Analyst
Should be flexible working in Shifts.
Experience- 0 yrs. to 1 yrs.
Qualification- MBA/M.com/ B.com/BBA.
Location- Gurgaon (Work From Office Only)
Looking for Immediate Joiners
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
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)
Company Name : Lenskart
Batch :
Product Internship (2024 passouts)
Product Analyst (2023/2022 passouts)
Link : https://docs.google.com/forms/d/e/1FAIpQLSe4XgJ05gi7YlltxfHSxbl9kd2rKKhVYyhgl-iYGW9-anrwUw/viewform
Batch :
Product Internship (2024 passouts)
Product Analyst (2023/2022 passouts)
Link : https://docs.google.com/forms/d/e/1FAIpQLSe4XgJ05gi7YlltxfHSxbl9kd2rKKhVYyhgl-iYGW9-anrwUw/viewform
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name : Indigo
Role : Full Stack Developer
Batch : 2023/2022 passouts
Link : https://jobs.goindigo.in/job/Gurgaon-Hack-To-Hire-2024-%28Full-Stack-Developer%29-HR/25916044/
Role : Full Stack Developer
Batch : 2023/2022 passouts
Link : https://jobs.goindigo.in/job/Gurgaon-Hack-To-Hire-2024-%28Full-Stack-Developer%29-HR/25916044/
jobs.goindigo.in
Hack To Hire - 2024 (Full Stack Developer)
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name : Indus Valley Partners
Challenge Name : IVP Coderush 4.0
Batch : 2025 and 2026 passouts - BTech (CS/IT) and MCA.
Prizes like Macbook Pro, Apple iPad + and chance to interview at Indus Valley Partners.
Link : https://bit.ly/IVPHackathon
Challenge Name : IVP Coderush 4.0
Batch : 2025 and 2026 passouts - BTech (CS/IT) and MCA.
Prizes like Macbook Pro, Apple iPad + and chance to interview at Indus Valley Partners.
Link : https://bit.ly/IVPHackathon
Mettl
Coderush 4.0: The IVP Hackathon 2025 on Mercer-Mettl Xathon
IVP Hackathon, coding competition, campus branding, hedge fund, capital markets, Fintech, #codewithIVP, #coderush,Code Rush, #Code, Code jam, Code Innovate Win, Programming, #codewithIVP
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
CIVO is hiring Go Developer Intern
Remote opportunity!
For 2025, 2026 grads
https://careers.civo.com/jobs/4629631-go-developer-intern
Remote opportunity!
For 2025, 2026 grads
https://careers.civo.com/jobs/4629631-go-developer-intern
Civo
Go Developer Intern (CLOSED) - Civo
Thanks for your interest in Civo. Unfortunately, this position has been closed due to the huge amount of candidates. No further applications will be considered. About Civo: Civo is revolutionizing ...