Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
UBS is hiring Interns
For 2023, 2024, 2025 grads
https://jobs.ubs.com/TGnewUI/Search/home/HomeWithPreLoad?jobid=304700&codes=fv&siteid=5012&partnerid=25008&PageType=JobDetails#jobDetails=304700_5012
For 2023, 2024, 2025 grads
https://jobs.ubs.com/TGnewUI/Search/home/HomeWithPreLoad?jobid=304700&codes=fv&siteid=5012&partnerid=25008&PageType=JobDetails#jobDetails=304700_5012
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Karbon Card is hiring for SDE Intern
Batch: 2025, 2026
Apply here:
https://docs.google.com/forms/d/e/1FAIpQLSdy23eJ_DUE8S1WfgJFhqCbyDbH4Sa21DSL0LWASKTB9xU_lA/viewform
Batch: 2025, 2026
Apply here:
https://docs.google.com/forms/d/e/1FAIpQLSdy23eJ_DUE8S1WfgJFhqCbyDbH4Sa21DSL0LWASKTB9xU_lA/viewform
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Natoma is hiring SWE
For 2021, 2022, 2023 grads
Location: Bangalore
https://app.dover.com/apply/natoma/2060a3ed-f24a-4446-96ab-ca0fd584cd32?rs=42706078
For 2021, 2022, 2023 grads
Location: Bangalore
https://app.dover.com/apply/natoma/2060a3ed-f24a-4446-96ab-ca0fd584cd32?rs=42706078
Dover
Software Engineer (Full Stack / Backend) at Natoma
Natoma is a technology platform reinventing the way organizations manage their non-human identities. We are seeking talented and motivated Software Engineers to join our early-stage team and play a pivotal role in shaping the future of non-human identityโฆ
public static int getMaxEfficiency(int[] arrivalTime) {
Arrays.sort(arrivalTime);
int maxEfficiency = Integer.MIN_VALUE;
int n = arrivalTime.length;
int left = 0;
for (int right = 1; right < n; right++) {
while (left < right && arrivalTime[right] - arrivalTime[left] > right - left) {
left++;
}
int activeTime = arrivalTime[right] - arrivalTime[left];
int testCases = right - left + 1;
int efficiency = testCases - activeTime;
maxEfficiency = Math.max(maxEfficiency, efficiency);
}
return maxEfficiency;
}
Expedia โ
Arrays.sort(arrivalTime);
int maxEfficiency = Integer.MIN_VALUE;
int n = arrivalTime.length;
int left = 0;
for (int right = 1; right < n; right++) {
while (left < right && arrivalTime[right] - arrivalTime[left] > right - left) {
left++;
}
int activeTime = arrivalTime[right] - arrivalTime[left];
int testCases = right - left + 1;
int efficiency = testCases - activeTime;
maxEfficiency = Math.max(maxEfficiency, efficiency);
}
return maxEfficiency;
}
Expedia โ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
dentsu is hiring for SQL Developer
CTC : 5 - 9 LPA
Eligibility : Entry Level
Apply Here : https://dentsuaegis.wd3.myworkdayjobs.com/DAN_GLOBAL/job/Bangalore/SQL-Developer_R1040066-1
CTC : 5 - 9 LPA
Eligibility : Entry Level
Apply Here : https://dentsuaegis.wd3.myworkdayjobs.com/DAN_GLOBAL/job/Bangalore/SQL-Developer_R1040066-1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
techolution is looking for talented Python Interns to join our innovative team.
Location: Hyderabad (Onsite)
Eligible Batch: 2024/2025
Duration: 6 months - 12 months
Key Skills Required to Apply:
Proficiency in Modular Object Oriented Python Coding.
Experience with Flask/Django/FastAPl
Strong knowledge of Data Structures & Algorithms
Exposure to backend development
Knowledge of microservices architecture
Familiarity with cloud platforms (AWS/Azure/GCP)
Deployment experience with Docker/Kubernetes
If you believe that you match the criteria, share your resume at cavery.mahajan@techolution.com
Location: Hyderabad (Onsite)
Eligible Batch: 2024/2025
Duration: 6 months - 12 months
Key Skills Required to Apply:
Proficiency in Modular Object Oriented Python Coding.
Experience with Flask/Django/FastAPl
Strong knowledge of Data Structures & Algorithms
Exposure to backend development
Knowledge of microservices architecture
Familiarity with cloud platforms (AWS/Azure/GCP)
Deployment experience with Docker/Kubernetes
If you believe that you match the criteria, share your resume at cavery.mahajan@techolution.com
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
NXP WIT Mentorship Program 2024 for Females
Stipend: INR 50,000
Registration Link: https://wit.nxp.com/
Do share with your Juniors too
Stipend: INR 50,000
Registration Link: https://wit.nxp.com/
Do share with your Juniors too
Nxp
The World of semiconductor innovation welcomes the WOMEN CHANGEMAKERS
NXP WIT
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
Yuvraj Singh on LinkedIn: #hiringnow #hiringdevelopers #hiringalert #datascience #ai #startupโฆ
Join Our Starting Core as a Data Science Intern!
We're looking for a passionate Data Science Intern to join our growing team! Work closely with our founderโฆ
We're looking for a passionate Data Science Intern to join our growing team! Work closely with our founderโฆ
#include <bits/stdc++.h>
using namespace std;
int main() {
long long n;
cin >> n;
long long ans = 0;
for (long long i = 1; i * i <= n; i++) {
if (n % i == 0) {
ans += i;
if (i != n / i) {
ans += n / i;
}
}
}
cout << ans << endl;
return 0;
}
Sum of divisors โ
using namespace std;
int main() {
long long n;
cin >> n;
long long ans = 0;
for (long long i = 1; i * i <= n; i++) {
if (n % i == 0) {
ans += i;
if (i != n / i) {
ans += n / i;
}
}
}
cout << ans << endl;
return 0;
}
Sum of divisors โ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
Arsh Bhatia on LinkedIn: #hiring #careeropportunities #razorpay #techjobs #referral #jointheteamโฆ | 335 comments
๐ Exciting Opportunities at Razorpay! ๐
Razorpay is on the lookout for talented individuals to join their prestigious organization. If youโre passionateโฆ | 335 comments on LinkedIn
Razorpay is on the lookout for talented individuals to join their prestigious organization. If youโre passionateโฆ | 335 comments on LinkedIn
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Rubrik
Role: Software Engineer (Winter Intern)
Batch eligible: 2025 grads only
Apply: https://www.rubrik.com/company/careers/departments/job.6195381
Role: Software Engineer (Winter Intern)
Batch eligible: 2025 grads only
Apply: https://www.rubrik.com/company/careers/departments/job.6195381
Rubrik
Error
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: GFG
Role: MTS (DSA)
Eligibility: Only for 2024/ 2025 pass-outs
Location: Onsite (Noida Sector 136)
Duration: 6 months
Internship starting immediately.
If interested send your resume to: shreya.singh@geeksforgeeks.org
Role: MTS (DSA)
Eligibility: Only for 2024/ 2025 pass-outs
Location: Onsite (Noida Sector 136)
Duration: 6 months
Internship starting immediately.
If interested send your resume to: shreya.singh@geeksforgeeks.org
int findNetworkEndpoint(int start, const vector<int>& fromNodes, const vector<int>& toNodes) {
if (fromNodes.size() <= 0 || toNodes.size() >= 10000) return 0;
unordered_map<int, int> nodeMap;
for (size_t i = 0; i < fromNodes.size(); ++i) {
nodeMap[fromNodes[i]] = toNodes[i];
}
while (nodeMap.find(start) != nodeMap.end()) {
start = nodeMap[start];
}
return start;
}
Apple โ
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
#include <bits/stdc++.h>
using namespace std;
void solve(vector<int> &curr, int L, int R, int &fm, int &sm) {
fm = INT_MIN;
sm = INT_MIN;
for (int i = L; i <= R; ++i) {
if (curr[i] > fm) {
sm = fm;
fm = curr[i];
} else if (curr[i] > sm) {
sm = curr[i];
}
}
}
int main() {
int N, Q;
cin >> N;
vector<int> curr(N + 1);
for (int i = 1; i <= N; ++i) {
cin >> curr[i];
}
cin >> Q;
for (int q = 0; q < Q; ++q) {
int L, R;
cin >> L >> R;
int fm, sm;
solve(curr, L, R, fm, sm);
int ans = (fm + sm) / 2;
cout << ans << endl;
}
return 0;
}
Globallogic โ
using namespace std;
void solve(vector<int> &curr, int L, int R, int &fm, int &sm) {
fm = INT_MIN;
sm = INT_MIN;
for (int i = L; i <= R; ++i) {
if (curr[i] > fm) {
sm = fm;
fm = curr[i];
} else if (curr[i] > sm) {
sm = curr[i];
}
}
}
int main() {
int N, Q;
cin >> N;
vector<int> curr(N + 1);
for (int i = 1; i <= N; ++i) {
cin >> curr[i];
}
cin >> Q;
for (int q = 0; q < Q; ++q) {
int L, R;
cin >> L >> R;
int fm, sm;
solve(curr, L, R, fm, sm);
int ans = (fm + sm) / 2;
cout << ans << endl;
}
return 0;
}
Globallogic โ
๐1