Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Hudle is hiring Flutter Developer
For 2024, 2023 grads
https://www.linkedin.com/posts/ashwanisng_flutter-developer-activity-7203668688007225344-wvNX?utm_source=share&utm_medium=member_android
For 2024, 2023 grads
https://www.linkedin.com/posts/ashwanisng_flutter-developer-activity-7203668688007225344-wvNX?utm_source=share&utm_medium=member_android
Linkedin
Flutter Developer | Ashwani Kumar Singh | 31 comments
We at Hudle are looking for a Flutter developer for our App Development team.
If you're passionate about mobile app development and ready to dive into theโฆ | 31 comments on LinkedIn
If you're passionate about mobile app development and ready to dive into theโฆ | 31 comments on LinkedIn
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Nurix is hiring Full Stack Engineer
For 2023, 2022, 2021 grads
https://www.linkedin.com/posts/anujkrmodi_startups-hiring-genai-activity-7203689224812859392-_W3f
For 2023, 2022, 2021 grads
https://www.linkedin.com/posts/anujkrmodi_startups-hiring-genai-activity-7203689224812859392-_W3f
Linkedin
Anuj Modi on LinkedIn: #startups #hiring #genai #startuphiring | 11 comments
We're Hiring! Full stack engineers at Nurix
Are you passionate about the future of artificial intelligence and eager to gain hands-on experience at aโฆ | 11 comments on LinkedIn
Are you passionate about the future of artificial intelligence and eager to gain hands-on experience at aโฆ | 11 comments on LinkedIn
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
MSCI is hiring for Python Developer (0 -3 years)
Expected Salary: 12-24 LPA
Apply here:
https://tas-msci.taleo.net/careersection/MSCI_EXTERNAL/jobdetail.ftl?lang=en&job=240000NC
Expected Salary: 12-24 LPA
Apply here:
https://tas-msci.taleo.net/careersection/MSCI_EXTERNAL/jobdetail.ftl?lang=en&job=240000NC
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Ciena is hiring for Software Engineer Applications 1 โ New Grad
Expected Salary: 12 - 16 LPA
Apply here:
https://careers.ciena.com/us/en/job/CIENUSR022938ENUS/Software-Engineer-Applications-1-New-Grad
Expected Salary: 12 - 16 LPA
Apply here:
https://careers.ciena.com/us/en/job/CIENUSR022938ENUS/Software-Engineer-Applications-1-New-Grad
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
EXL is hiring for Junior Business Analyst.
Experience: 0+ yrs
Skills: SQL, Python/R, Power BI
Notice period: Immediate joining
Share your resume at bhupesh.khurana@exlservice.com
Experience: 0+ yrs
Skills: SQL, Python/R, Power BI
Notice period: Immediate joining
Share your resume at bhupesh.khurana@exlservice.com
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Swageazy is seeking a driven and enthusiastic Sr. Associate - Enterprise Sales.
Experience - Fresher ( who has recently graduated).
Job location - HSR, Bangalore
Salary - Up to 5.5 lpa
Interested candidates can share their resume on ankita@swageazy.com
Experience - Fresher ( who has recently graduated).
Job location - HSR, Bangalore
Salary - Up to 5.5 lpa
Interested candidates can share their resume on ankita@swageazy.com
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
Hiring Freshers!!! | Visalakshi Manikandan
Hiring Freshers!!!
We are conducting Mass Hiring Off-campus drive for Java Freshers!!!
Great opportunity to kickstart your career!
Eligibility criteria: B.E., B. Tech, MCA - 2023 and 2024 passed out batches. Only CSE & IT, First class with no backlogs.โฆ
We are conducting Mass Hiring Off-campus drive for Java Freshers!!!
Great opportunity to kickstart your career!
Eligibility criteria: B.E., B. Tech, MCA - 2023 and 2024 passed out batches. Only CSE & IT, First class with no backlogs.โฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Oracle
๐ Job Title: Software Developer
โ๐ป YOE: 0-2 years
โก๏ธ Apply: https://eeho.fa.us2.oraclecloud.com/hcmUI/CandidateExperience/en/sites/jobsearch/job/231334
Please do share in your college grps and in case you are applying please react on this post:) ๐โค๏ธ
๐ Job Title: Software Developer
โ๐ป YOE: 0-2 years
โก๏ธ Apply: https://eeho.fa.us2.oraclecloud.com/hcmUI/CandidateExperience/en/sites/jobsearch/job/231334
Please do share in your college grps and in case you are applying please react on this post:) ๐โค๏ธ
Oracle
Software Developer 1
Pipeline Req ID for FY25 Netsuite selects. Not applicable to internal/external applicants
vector<int> BobnBot(int N, int M, vector<vector<int>> games, int Q, vector<vector<int>> queries) {
vector<int> result;
for (const auto& query : queries) {
vector<int> cleaned_query;
for (int num : query) {
if (num != -1) {
cleaned_query.push_back(num);
} else {
break;
}
}
int match_count = 0;
for (const auto& game : games) {
bool match = true;
for (size_t i = 0; i < cleaned_query.size(); ++i) {
if (game[i] != cleaned_query[i]) {
match = false;
break;
}
}
if (match) {
++match_count;
}
}
result.push_back(match_count);
}
return result;
}
The bot and the game โ
vector<int> result;
for (const auto& query : queries) {
vector<int> cleaned_query;
for (int num : query) {
if (num != -1) {
cleaned_query.push_back(num);
} else {
break;
}
}
int match_count = 0;
for (const auto& game : games) {
bool match = true;
for (size_t i = 0; i < cleaned_query.size(); ++i) {
if (game[i] != cleaned_query[i]) {
match = false;
break;
}
}
if (match) {
++match_count;
}
}
result.push_back(match_count);
}
return result;
}
The bot and the game โ
๐1
vector<string> areAlmostEquivalent(vector<string>& s, vector<string>& t) {
vector<string> result;
auto countCharacters = [](const string& str) {
vector<int> count(26, 0);
for (char c : str) {
count[c - 'a']++;
}
return count;
};
for (size_t i = 0; i < s.size(); ++i) {
const string& str_s = s[i];
const string& str_t = t[i];
vector<int> count_s = countCharacters(str_s);
vector<int> count_t = countCharacters(str_t);
bool isAlmostEquivalent = true;
for (int j = 0; j < 26; ++j) {
if (abs(count_s[j] - count_t[j]) > 3) {
isAlmostEquivalent = false;
break;
}
}
if (isAlmostEquivalent) {
result.push_back("YES");
} else {
result.push_back("NO");
}
}
return result;
}
Almost Equivalent strings โ
vector<string> result;
auto countCharacters = [](const string& str) {
vector<int> count(26, 0);
for (char c : str) {
count[c - 'a']++;
}
return count;
};
for (size_t i = 0; i < s.size(); ++i) {
const string& str_s = s[i];
const string& str_t = t[i];
vector<int> count_s = countCharacters(str_s);
vector<int> count_t = countCharacters(str_t);
bool isAlmostEquivalent = true;
for (int j = 0; j < 26; ++j) {
if (abs(count_s[j] - count_t[j]) > 3) {
isAlmostEquivalent = false;
break;
}
}
if (isAlmostEquivalent) {
result.push_back("YES");
} else {
result.push_back("NO");
}
}
return result;
}
Almost Equivalent strings โ
๐1
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int minStones(vector<int>& xstart, vector<int>& xend) {
int n = xstart.size();
vector<pair<int, int>> intervals;
for (int i = 0; i < n; ++i) {
intervals.push_back({xend[i], xstart[i]});
}
sort(intervals.begin(), intervals.end());
int stones = 0;
int lastSmashed = -1;
for (const auto& interval : intervals) {
int start = interval.second;
int end = interval.first;
if (start > lastSmashed) {
stones++;
lastSmashed = end;
}
}
return stones;
}
#include <vector>
#include <algorithm>
using namespace std;
int minStones(vector<int>& xstart, vector<int>& xend) {
int n = xstart.size();
vector<pair<int, int>> intervals;
for (int i = 0; i < n; ++i) {
intervals.push_back({xend[i], xstart[i]});
}
sort(intervals.begin(), intervals.end());
int stones = 0;
int lastSmashed = -1;
for (const auto& interval : intervals) {
int start = interval.second;
int end = interval.first;
if (start > lastSmashed) {
stones++;
lastSmashed = end;
}
}
return stones;
}
๐1๐คฎ1
Forwarded from Amazon Exam Placement Group (Dushyant)
Forwarded from Amazon Exam Placement Group (Dushyant)
Amazon Exam Placement Group
Photo
vector<int> suitableLocations(vector<int>& center, long d) {
auto feasible = & {
long total = 0;
for (int point : center) {
total += abs(mid - point) * 2;
}
return total <= d;
};
auto binarySearchRight = & {
int low = start;
int high = end;
while (low <= high) {
int mid = low + (high - low) / 2;
if (feasible(mid)) {
low = mid + 1;
} else {
high = mid - 1;
}
}
return low - 1;
};
auto binarySearchLeft = & {
int low = start;
int high = end;
while (low <= high) {
int mid = low + (high - low) / 2;
if (feasible(mid)) {
high = mid - 1;
} else {
low = mid + 1;
}
}
return low;
};
vector<int> suitablePoints;
int rightLimit = binarySearchRight(0, *max_element(center.begin(), center.end()) + d);
int leftLimit = binarySearchLeft(*min_element(center.begin(), center.end()) - d, -1);
for (int i = leftLimit; i <= rightLimit; ++i) {
suitablePoints.push_back(i);
}
return suitablePoints;
}
Amazon โ
auto feasible = & {
long total = 0;
for (int point : center) {
total += abs(mid - point) * 2;
}
return total <= d;
};
auto binarySearchRight = & {
int low = start;
int high = end;
while (low <= high) {
int mid = low + (high - low) / 2;
if (feasible(mid)) {
low = mid + 1;
} else {
high = mid - 1;
}
}
return low - 1;
};
auto binarySearchLeft = & {
int low = start;
int high = end;
while (low <= high) {
int mid = low + (high - low) / 2;
if (feasible(mid)) {
high = mid - 1;
} else {
low = mid + 1;
}
}
return low;
};
vector<int> suitablePoints;
int rightLimit = binarySearchRight(0, *max_element(center.begin(), center.end()) + d);
int leftLimit = binarySearchLeft(*min_element(center.begin(), center.end()) - d, -1);
for (int i = leftLimit; i <= rightLimit; ++i) {
suitablePoints.push_back(i);
}
return suitablePoints;
}
Amazon โ
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Glean Hiring Salesforce Developer Intern:
Graduation Year: 2024 / 2025 / 2026
Eligibility: Enrolled in a Bachelor's or Master's degree program in Computer Science, Information Systems, Business Administration, or a related field.
Duration: 3 months
Location: Bangalore
Apply Link: https://boards.greenhouse.io/gleanwork/jobs/4427247005
Graduation Year: 2024 / 2025 / 2026
Eligibility: Enrolled in a Bachelor's or Master's degree program in Computer Science, Information Systems, Business Administration, or a related field.
Duration: 3 months
Location: Bangalore
Apply Link: https://boards.greenhouse.io/gleanwork/jobs/4427247005
job-boards.greenhouse.io
Glean
<h4><strong>About Glean:</strong></h4>
<p>Founded in 2019, Glean is an innovative AI-powered knowledge management platform designed to help organizations quickly find, organize, and share information across their teams. By integrating seamlessly with toolsโฆ
<p>Founded in 2019, Glean is an innovative AI-powered knowledge management platform designed to help organizations quickly find, organize, and share information across their teams. By integrating seamlessly with toolsโฆ
Forwarded from Amazon Exam Placement Group (Dushyant)
int totalDist(vector<int>& c, int x) {
int d = 0;
for (int i : c) d += 2 * abs(i - x);
return d;
}
int suitableLocations(vector<int>& c, long long d) {
sort(c.begin(), c.end());
auto td = & { return totalDist(c, x); };
int m = c.size() / 2, l = m, r = m;
while (td(l) <= d) l -= 1;
while (td(r) <= d) r += 1;
return max(0, r - l - 1);
}
Amazon โ
int d = 0;
for (int i : c) d += 2 * abs(i - x);
return d;
}
int suitableLocations(vector<int>& c, long long d) {
sort(c.begin(), c.end());
auto td = & { return totalDist(c, x); };
int m = c.size() / 2, l = m, r = m;
while (td(l) <= d) l -= 1;
while (td(r) <= d) r += 1;
return max(0, r - l - 1);
}
Amazon โ
long wt = 0, ct = 0;
for (int i = 0; i < N; i++) {
if (patients[i][0] > ct) {
ct = patients[i][0];
}
wt += ct + patients[i][1] - patients[i][0];
ct += patients[i][1];
}
return wt / N;
Doctor โ
for (int i = 0; i < N; i++) {
if (patients[i][0] > ct) {
ct = patients[i][0];
}
wt += ct + patients[i][1] - patients[i][0];
ct += patients[i][1];
}
return wt / N;
Doctor โ
๐1