Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Hiring Quality Trainee with 0 to 2 years of experience in Quality from Automotive background.
BE EEE / Mechanical / ECE freshers or 1 to 2 yrs experienced can apply
Interested candidates can share profile to recruitment@besmakindia.com with the subject line " Trainee - Quality"
Job Location- Oragadam
BE EEE / Mechanical / ECE freshers or 1 to 2 yrs experienced can apply
Interested candidates can share profile to recruitment@besmakindia.com with the subject line " Trainee - Quality"
Job Location- Oragadam
public static int solution(String S, String T) {
int n = S.length();
int[] sArray = new int[n];
int[] tArray = new int[n];
for (int i = 0; i < n; i++) {
sArray[i] = S.charAt(i) - '0';
tArray[i] = T.charAt(i) - '0';
}
int totalMoves = 0;
for (int i = 0; i < n - 1; i++) {
int currentDigitS = sArray[i];
int targetDigitT = tArray[i];
if (currentDigitS != targetDigitT) {
int diff = (targetDigitT - currentDigitS + 10) % 10;
sArray[i] = (sArray[i] + diff) % 10;
sArray[i + 1] = (sArray[i + 1] + diff) % 10;
totalMoves += diff;
}
}
if (sArray[n - 1] != tArray[n - 1]) {
return -1;
}
return totalMoves;
}
Hashedin โ
int n = S.length();
int[] sArray = new int[n];
int[] tArray = new int[n];
for (int i = 0; i < n; i++) {
sArray[i] = S.charAt(i) - '0';
tArray[i] = T.charAt(i) - '0';
}
int totalMoves = 0;
for (int i = 0; i < n - 1; i++) {
int currentDigitS = sArray[i];
int targetDigitT = tArray[i];
if (currentDigitS != targetDigitT) {
int diff = (targetDigitT - currentDigitS + 10) % 10;
sArray[i] = (sArray[i] + diff) % 10;
sArray[i + 1] = (sArray[i + 1] + diff) % 10;
totalMoves += diff;
}
}
if (sArray[n - 1] != tArray[n - 1]) {
return -1;
}
return totalMoves;
}
Hashedin โ
public int solution(int[] T) {
int N = T.length;
List<Integer>[] tree = new ArrayList[N];
for (int i = 0; i < N; i++) {
tree[i] = new ArrayList<>();
}
for (int i = 1; i < N; i++) {
tree[i].add(T[i]);
tree[T[i]].add(i);
}
return dfs(0, -1, tree, false);
}
private int dfs(int current, int parent, List<Integer>[] tree, boolean usedTicket) {
int maxCities = 1;
for (int neighbor : tree[current]) {
if (neighbor != parent) {
if (neighbor % 2 == 1) {
if (!usedTicket) {
maxCities = Math.max(maxCities, 1 + dfs(neighbor, current, tree, true));
}
} else {
maxCities = Math.max(maxCities, 1 + dfs(neighbor, current, tree, usedTicket));
}
}
}
return maxCities;
}
Hashedin โ
int N = T.length;
List<Integer>[] tree = new ArrayList[N];
for (int i = 0; i < N; i++) {
tree[i] = new ArrayList<>();
}
for (int i = 1; i < N; i++) {
tree[i].add(T[i]);
tree[T[i]].add(i);
}
return dfs(0, -1, tree, false);
}
private int dfs(int current, int parent, List<Integer>[] tree, boolean usedTicket) {
int maxCities = 1;
for (int neighbor : tree[current]) {
if (neighbor != parent) {
if (neighbor % 2 == 1) {
if (!usedTicket) {
maxCities = Math.max(maxCities, 1 + dfs(neighbor, current, tree, true));
}
} else {
maxCities = Math.max(maxCities, 1 + dfs(neighbor, current, tree, usedTicket));
}
}
}
return maxCities;
}
Hashedin โ
public int solution(int[] A) {
int N = A.length;
Arrays.sort(A);
int minMoves = N;
for (int i = 0; i <= N - 1; i++) {
int end = A[i] + N - 1;
int r= binarySearch(A, end);
int balls= r- i + 1;
int moves = N - balls;
minMoves = Math.min(minMoves, moves);
}
return minMoves;
}
private int binarySearch(int[] A, int target) {
int low = 0;
int high = A.length - 1;
while (low <= high) {
int mid = low + (high - low) / 2;
if (A[mid] <= target) {
low = mid + 1;
} else {
high = mid - 1;
}
}
return high;
}
Hashedin โ
int N = A.length;
Arrays.sort(A);
int minMoves = N;
for (int i = 0; i <= N - 1; i++) {
int end = A[i] + N - 1;
int r= binarySearch(A, end);
int balls= r- i + 1;
int moves = N - balls;
minMoves = Math.min(minMoves, moves);
}
return minMoves;
}
private int binarySearch(int[] A, int target) {
int low = 0;
int high = A.length - 1;
while (low <= high) {
int mid = low + (high - low) / 2;
if (A[mid] <= target) {
low = mid + 1;
} else {
high = mid - 1;
}
}
return high;
}
Hashedin โ
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Techmatter Technologies is hiring Fullstack Software Developer
For 2024, 2023, 2022, 2021, 2020 grads
https://www.instahyre.com/job-318551-fullstack-software-developer-data-at-techmatters-technologies-3-mumbai/
For 2024, 2023, 2022, 2021, 2020 grads
https://www.instahyre.com/job-318551-fullstack-software-developer-data-at-techmatters-technologies-3-mumbai/
Instahyre
Fullstack Software Developer - Data job at Techmatters Technologies - Instahyre
Techmatters Technologies is looking for a Fullstack Software Developer - Data in Mumbai with 0-4 years of experience in Full-Stack Development, Other Software Development, Python, SQL, pandas, Data Analysis, etc. Apply today and get your dream job at Techmattersโฆ
public int solution(int[] A) {
int N = A.length;
Arrays.sort(A);
int minMoves = N;
for (int i = 0; i <= N - 1; i++) {
int end = A[i] + N - 1;
int r= binarySearch(A, end);
int balls= r- i + 1;
int moves = N - balls;
minMoves = Math.min(minMoves, moves);
}
return minMoves;
}
private int binarySearch(int[] A, int target) {
int low = 0;
int high = A.length - 1;
while (low <= high) {
int mid = low + (high - low) / 2;
if (A[mid] <= target) {
low = mid + 1;
} else {
high = mid - 1;
}
}
return high;
}
int N = A.length;
Arrays.sort(A);
int minMoves = N;
for (int i = 0; i <= N - 1; i++) {
int end = A[i] + N - 1;
int r= binarySearch(A, end);
int balls= r- i + 1;
int moves = N - balls;
minMoves = Math.min(minMoves, moves);
}
return minMoves;
}
private int binarySearch(int[] A, int target) {
int low = 0;
int high = A.length - 1;
while (low <= high) {
int mid = low + (high - low) / 2;
if (A[mid] <= target) {
low = mid + 1;
} else {
high = mid - 1;
}
}
return high;
}
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
#include <vector>
#include <string>
#include <algorithm>
#include <iostream>
using namespace std;
struct Area {
int startR, endR, startC, endC, size;
bool horizontal;
Area(int sr, int er, int sc, int ec, int s, bool h)
: startR(sr), endR(er), startC(sc), endC(ec), size(s), horizontal(h) {}
};
int maxCultivationArea(const vector<string>& A) {
int N = A.size();
int M = A[0].size();
vector<Area> areas;
for (int r = 0; r < N; ++r) {
int startC = 0;
while (startC < M) {
if (A[r][startC] == '.') {
int endC = startC;
while (endC < M && A[r][endC] == '.') endC++;
areas.emplace_back(r, r, startC, endC - 1, endC - startC, true);
startC = endC;
} else {
startC++;
}
}
}
for (int c = 0; c < M; ++c) {
int startR = 0;
while (startR < N) {
if (A[startR][c] == '.') {
int endR = startR;
while (endR < N && A[endR][c] == '.') endR++;
areas.emplace_back(startR, endR - 1, c, c, endR - startR, false);
startR = endR;
} else {
startR++;
}
}
}
int maxCultivation = 0;
for (int i = 0; i < areas.size(); ++i) {
for (int j = i + 1; j < areas.size(); ++j) {
const Area& a1 = areas[i];
const Area& a2 = areas[j];
bool overlap = false;
if (a1.horizontal && a2.horizontal) {
overlap = a1.startR == a2.startR && !(a1.endC < a2.startC || a2.endC < a1.startC);
} else if (!a1.horizontal && !a2.horizontal) {
overlap = a1.startC == a2.startC && !(a1.endR < a2.startR || a2.endR < a1.startR);
} else {
if (a1.horizontal) {
overlap = a1.startR <= a2.endR && a1.startR >= a2.startR && a2.startC <= a1.endC && a2.startC >= a1.startC;
} else {
overlap = a2.startR <= a1.endR && a2.startR >= a1.startR && a1.startC <= a2.endC && a1.startC >= a2.startC;
}
}
if (!overlap) {
maxCultivation = max(maxCultivation, a1.size + a2.size);
}
}
}
for (const auto& area : areas) {
maxCultivation = max(maxCultivation, area.size);
}
return maxCultivation;
}
#include <string>
#include <algorithm>
#include <iostream>
using namespace std;
struct Area {
int startR, endR, startC, endC, size;
bool horizontal;
Area(int sr, int er, int sc, int ec, int s, bool h)
: startR(sr), endR(er), startC(sc), endC(ec), size(s), horizontal(h) {}
};
int maxCultivationArea(const vector<string>& A) {
int N = A.size();
int M = A[0].size();
vector<Area> areas;
for (int r = 0; r < N; ++r) {
int startC = 0;
while (startC < M) {
if (A[r][startC] == '.') {
int endC = startC;
while (endC < M && A[r][endC] == '.') endC++;
areas.emplace_back(r, r, startC, endC - 1, endC - startC, true);
startC = endC;
} else {
startC++;
}
}
}
for (int c = 0; c < M; ++c) {
int startR = 0;
while (startR < N) {
if (A[startR][c] == '.') {
int endR = startR;
while (endR < N && A[endR][c] == '.') endR++;
areas.emplace_back(startR, endR - 1, c, c, endR - startR, false);
startR = endR;
} else {
startR++;
}
}
}
int maxCultivation = 0;
for (int i = 0; i < areas.size(); ++i) {
for (int j = i + 1; j < areas.size(); ++j) {
const Area& a1 = areas[i];
const Area& a2 = areas[j];
bool overlap = false;
if (a1.horizontal && a2.horizontal) {
overlap = a1.startR == a2.startR && !(a1.endC < a2.startC || a2.endC < a1.startC);
} else if (!a1.horizontal && !a2.horizontal) {
overlap = a1.startC == a2.startC && !(a1.endR < a2.startR || a2.endR < a1.startR);
} else {
if (a1.horizontal) {
overlap = a1.startR <= a2.endR && a1.startR >= a2.startR && a2.startC <= a1.endC && a2.startC >= a1.startC;
} else {
overlap = a2.startR <= a1.endR && a2.startR >= a1.startR && a1.startC <= a2.endC && a1.startC >= a2.startC;
}
}
if (!overlap) {
maxCultivation = max(maxCultivation, a1.size + a2.size);
}
}
}
for (const auto& area : areas) {
maxCultivation = max(maxCultivation, area.size);
}
return maxCultivation;
}
๐1
List Customer and product without saleโ
โค1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
YouTube is hiring SDE
For 2023, 2022, 2021 grads
CTC: 35LPA-45LPA
Location - Bangalore
Register ASAP - https://unstop.com/jobs/software-engineer-ii-mobile-youtube-1007254?lb=Uy5zoiXM&utm_medium=Share&utm_source=shortUrl
For 2023, 2022, 2021 grads
CTC: 35LPA-45LPA
Location - Bangalore
Register ASAP - https://unstop.com/jobs/software-engineer-ii-mobile-youtube-1007254?lb=Uy5zoiXM&utm_medium=Share&utm_source=shortUrl
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Salesforce
๐ Job Title: Software Engineer (AMTS)
โ๐ป YOE: 0-2 years
โก๏ธ Apply: https://salesforce.wd12.myworkdayjobs.com/en-US/External_Career_Site/job/Software-Engineering-AMTS_JR251552
Please do share in your college grps and in case you are applying please react on this post:) ๐โค๏ธ
๐ Job Title: Software Engineer (AMTS)
โ๐ป YOE: 0-2 years
โก๏ธ Apply: https://salesforce.wd12.myworkdayjobs.com/en-US/External_Career_Site/job/Software-Engineering-AMTS_JR251552
Please do share in your college grps and in case you are applying please react on this post:) ๐โค๏ธ
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Unstudio AI | Full Stack Engineer Internship | 2024, 2025, 2026 Grads
https://in.linkedin.com/jobs/view/full-stack-engineer-at-unstudio-ai-3936970265?position=5&pageNum=0&refId=bbrC6FlwfyHWhJ2b%2B1frUA%3D%3D&trackingId=fm4cVyntzX85ISIMWY9hOg%3D%3D&trk=public_jobs_jserp-result_search-card
https://in.linkedin.com/jobs/view/full-stack-engineer-at-unstudio-ai-3936970265?position=5&pageNum=0&refId=bbrC6FlwfyHWhJ2b%2B1frUA%3D%3D&trackingId=fm4cVyntzX85ISIMWY9hOg%3D%3D&trk=public_jobs_jserp-result_search-card
Linkedin
Unstudio AI hiring Full Stack Engineer in Gurugram, Haryana, India | LinkedIn
Posted 6:17:53 AM. โจ About Us โจUnstudio is building a suite of AI-powered products that empower entrepreneurs, smallโฆ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)
PayU | Software Engineer Intern | 2025, 2024 Grads | Expected Stipend: 35-40K
https://in.linkedin.com/jobs/view/intern-software-engineer-at-payu-3935457893?position=1&pageNum=0&refId=clqAgydhsR5yFGMuH7avLQ%3D%3D&trackingId=XXrSJUxJ1oVou%2FW3s87hfw%3D%3D&trk=public_jobs_jserp-result_search-card
https://in.linkedin.com/jobs/view/intern-software-engineer-at-payu-3935457893?position=1&pageNum=0&refId=clqAgydhsR5yFGMuH7avLQ%3D%3D&trackingId=XXrSJUxJ1oVou%2FW3s87hfw%3D%3D&trk=public_jobs_jserp-result_search-card
Linkedin
PayU hiring Intern - Software Engineer in Mumbai, Maharashtra, India | LinkedIn
Posted 4:50:08 PM. Role: Intern - Software EngineerLocation: Gurgaon/BengaluruRequirementsSoftware Development: Assistโฆ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)
Company Name: ServiceNow
๐ Job Title: SRE (Site Reliability Engineer)
โ๐ป YOE: 2023 and 2024 grads
โก๏ธ Apply: https://careers.servicenow.com/en/jobs/743999990606469/site-reliability-engineer/
Please do share in your college grps and in case you are applying please react on this post:) ๐โค๏ธ
๐ Job Title: SRE (Site Reliability Engineer)
โ๐ป YOE: 2023 and 2024 grads
โก๏ธ Apply: https://careers.servicenow.com/en/jobs/743999990606469/site-reliability-engineer/
Please do share in your college grps and in case you are applying please react on this post:) ๐โค๏ธ
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Quest Global is hiring for Trainee Engineer
Experience: 0-1 years
Expected Salary: 4 - 6 LPA
Apply here:
https://krb-sjobs.brassring.com/TGnewUI/Search/home/HomeWithPreLoad?partnerid=30174&siteid=5116&PageType=JobDetails&jobid=91481#jobDetails=91481_5116
Experience: 0-1 years
Expected Salary: 4 - 6 LPA
Apply here:
https://krb-sjobs.brassring.com/TGnewUI/Search/home/HomeWithPreLoad?partnerid=30174&siteid=5116&PageType=JobDetails&jobid=91481#jobDetails=91481_5116
Brassring
Trainee Engineer - Quest Global - Job Details
Job Details: Quest Global is an organization at the forefront of innovation and one of the worldโs fastest growing engineer
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Capillary is hiring for Software Development Engineer - I
Experience: 0 - 2 years
Expected Salary: 10 - 15 LPA
Apply here:
https://capillarytech.skillate.com/jobs/54025
Experience: 0 - 2 years
Expected Salary: 10 - 15 LPA
Apply here:
https://capillarytech.skillate.com/jobs/54025
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Register for Amazon ML Summer School - https://xathon.mettl.com/event/amazonmlsummerschool
2025 or 2026 grads only allowed
2025 or 2026 grads only allowed