Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Send your updated resume at:
hr@ksvsofttech.com
hr@ksvsofttech.com
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
https://jobs.ashbyhq.com/Vance/2f554273-14da-4f0a-b0f1-43a6ab7aa489?utm_source=r9bA27AdXn
Vance Hiring Backend Engineer Intern
Vance Hiring Backend Engineer Intern
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
TRC Companies, Inc is hiring for Frontend Developer
Experience: 0 - 3 years
Apply here:
https://careers.trccompanies.com/jobs/19731?lang=en-us&iis=Job+Board&iisn=LinkedIn
Experience: 0 - 3 years
Apply here:
https://careers.trccompanies.com/jobs/19731?lang=en-us&iis=Job+Board&iisn=LinkedIn
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐AI Internship at IIT Roorkee
Duration: 6 Months
Fill in the form below : https://docs.google.com/forms/d/e/1FAIpQLSePac0dKiWXyR3IbOexzQFDHq-0AFUi61MeAlOZ_gBAU_4Sng/viewform
Duration: 6 Months
Fill in the form below : https://docs.google.com/forms/d/e/1FAIpQLSePac0dKiWXyR3IbOexzQFDHq-0AFUi61MeAlOZ_gBAU_4Sng/viewform
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Rolls-Royce is hiring for Software Development Engineer
Experience: 0 - 3 years
Expected Salary: 10-20 LPA
Apply here:
https://rollsroyce.wd3.myworkdayjobs.com/Professional/job/Mumbai/Software-Development-Engineer_JR6125450?source=APPLICANT_SOURCE-3-19
Experience: 0 - 3 years
Expected Salary: 10-20 LPA
Apply here:
https://rollsroyce.wd3.myworkdayjobs.com/Professional/job/Mumbai/Software-Development-Engineer_JR6125450?source=APPLICANT_SOURCE-3-19
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Branch is hiring for Multiple Roles
Expected Stipend: 4-6 LPA
Apply here Software Engineer Intern:
https://wellfound.com/jobs/3085545-software-engineer-intern
Apply here Android Software Intern:
https://wellfound.com/jobs/3085546-android-software-intern
Expected Stipend: 4-6 LPA
Apply here Software Engineer Intern:
https://wellfound.com/jobs/3085545-software-engineer-intern
Apply here Android Software Intern:
https://wellfound.com/jobs/3085546-android-software-intern
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Deutsche Bank is hiring for QA Engineer, Associate
Experience: 0 - 2 years
Expected Salary: 10-20 LPA
Apply here:
https://careers.db.com/professionals/search-roles/?test.html?kid%3D=linkedinjobwrap#/professional/job/53909
Experience: 0 - 2 years
Expected Salary: 10-20 LPA
Apply here:
https://careers.db.com/professionals/search-roles/?test.html?kid%3D=linkedinjobwrap#/professional/job/53909
Db
Search Roles โ Deutsche Bank Careers
Use our search tool to find current opportunities here at Deutsche Bank.
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Weโre looking for an ML/Python intern at smallest.ai to start immediately.
Great at - threads, processes, basic prompt engineering.
Should be quick to pick things up.
Need any one strong proof of work/excellence.
Location Indiranagar
Mail sudarshan@smallest.ai
Great at - threads, processes, basic prompt engineering.
Should be quick to pick things up.
Need any one strong proof of work/excellence.
Location Indiranagar
Mail sudarshan@smallest.ai
โค1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
DOW Hiring Campus Internship 2024-2025 - Information Systems
https://dow.wd1.myworkdayjobs.com/ExternalCareers/job/Navi-Mumbai-IND/Campus-Internship-2024-2025---Information-Systems_R2054719?src=JB-14000
https://dow.wd1.myworkdayjobs.com/ExternalCareers/job/Navi-Mumbai-IND/Campus-Internship-2024-2025---Information-Systems_R2054719?src=JB-14000
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
#include <iostream>
#include <vector>
#include <unordered_map>
#include <algorithm>
const int MOD = 1000000007;
using namespace std;
void dfs(int node, const unordered_map<int, vector<pair<int, int>>>& tree, vector<long long>& magnitudes) {
auto it = tree.find(node);
if (it != tree.end()) {
for (const auto& neighbor : it->second) {
int next_node = neighbor.first;
int weight = neighbor.second;
magnitudes[next_node] = (magnitudes[node] * weight) % MOD;
dfs(next_node, tree, magnitudes);
}
}
}
vector<int> findEquivalentMagnitude(int unit_nodes, vector<int> unit_from, vector<int> unit_to, vector<int> unit_weight, int x) {
unordered_map<int, vector<pair<int, int>>> tree;
for (int i = 0; i < unit_from.size(); ++i) {
tree[unit_from[i]].emplace_back(unit_to[i], unit_weight[i]);
}
vector<long long> magnitudes(unit_nodes + 1, -1);
magnitudes[1] = x;
dfs(1, tree, magnitudes);
vector<int> result(unit_nodes);
for (int i = 1; i <= unit_nodes; ++i) {
result[i - 1] = magnitudes[i];
}
return result;
}
UKGโ
#include <vector>
#include <unordered_map>
#include <algorithm>
const int MOD = 1000000007;
using namespace std;
void dfs(int node, const unordered_map<int, vector<pair<int, int>>>& tree, vector<long long>& magnitudes) {
auto it = tree.find(node);
if (it != tree.end()) {
for (const auto& neighbor : it->second) {
int next_node = neighbor.first;
int weight = neighbor.second;
magnitudes[next_node] = (magnitudes[node] * weight) % MOD;
dfs(next_node, tree, magnitudes);
}
}
}
vector<int> findEquivalentMagnitude(int unit_nodes, vector<int> unit_from, vector<int> unit_to, vector<int> unit_weight, int x) {
unordered_map<int, vector<pair<int, int>>> tree;
for (int i = 0; i < unit_from.size(); ++i) {
tree[unit_from[i]].emplace_back(unit_to[i], unit_weight[i]);
}
vector<long long> magnitudes(unit_nodes + 1, -1);
magnitudes[1] = x;
dfs(1, tree, magnitudes);
vector<int> result(unit_nodes);
for (int i = 1; i <= unit_nodes; ++i) {
result[i - 1] = magnitudes[i];
}
return result;
}
UKGโ
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Zeta
Role: SDE 1 (Backend) and SDE 1 (Frontend)
Experience Required: 0-1 years
Apply:
1) Backend: https://jobs.lever.co/zeta/f7a35ddf-fb28-4098-886b-156460082cb7
2) Frontend: https://jobs.lever.co/zeta/719928df-d136-41a0-93e8-2ca93bad96ee
Role: SDE 1 (Backend) and SDE 1 (Frontend)
Experience Required: 0-1 years
Apply:
1) Backend: https://jobs.lever.co/zeta/f7a35ddf-fb28-4098-886b-156460082cb7
2) Frontend: https://jobs.lever.co/zeta/719928df-d136-41a0-93e8-2ca93bad96ee
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Bentley
Role: Associate Software Quality Analyst (QA Profile)
Batch eligible: 2023 and 2024 grads
Apply: https://jobs.bentley.com/job/Kolkata-Associate-Software-Quality-Analyst/1175269200/
Role: Associate Software Quality Analyst (QA Profile)
Batch eligible: 2023 and 2024 grads
Apply: https://jobs.bentley.com/job/Kolkata-Associate-Software-Quality-Analyst/1175269200/
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Email: hr@webinfinitesolutions.com
Contact: +919465532412
Contact: +919465532412
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Send your updated resume at:
hr@trioangle.com
hr@trioangle.com
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: The Trade Desk
Role: Software Engineering Intern
Batch eligible: 2025 grads (2026 grads can also try)
Apply: https://boards.greenhouse.io/thetradedesk/jobs/4435073007
Role: Software Engineering Intern
Batch eligible: 2025 grads (2026 grads can also try)
Apply: https://boards.greenhouse.io/thetradedesk/jobs/4435073007
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
public static int countMeetings(int[] firstDay, int[] lastDay) {
int n = firstDay.length;
TreeSet<Integer> availableDays = new TreeSet<>();
for (int i = 1; i <= 100000; i++) {
availableDays.add(i);
}
int count = 0;
for (int i = 0; i < n; i++) {
int start = firstDay[i];
int end = lastDay[i];
Integer day = availableDays.ceiling(start);
if (day != null && day <= end) {
count++;
availableDays.remove(day);
}
}
return count;
}
Standard chartered โ
int n = firstDay.length;
TreeSet<Integer> availableDays = new TreeSet<>();
for (int i = 1; i <= 100000; i++) {
availableDays.add(i);
}
int count = 0;
for (int i = 0; i < n; i++) {
int start = firstDay[i];
int end = lastDay[i];
Integer day = availableDays.ceiling(start);
if (day != null && day <= end) {
count++;
availableDays.remove(day);
}
}
return count;
}
Standard chartered โ