๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
#include <bits/stdc++.h> using namespace std; #define int long long int n; int t[21][10003]; int solve(vector<int>& rods, int i, int diff) { if (i == n) { if (diff == 0) return 0; return LLONG_MIN; โฆ
Maximum power โ
def max_difference(arr):
n = len(arr)
next_greater = [-1] * n
stack = []
for i in range(n):
while stack and arr[i] > arr[stack[-1]]:
next_greater[stack.pop()] = i
stack.append(i)
max_diff = float('-inf')
for i in range(n):
if next_greater[i] != -1:
max_diff = max(max_diff, abs(arr[next_greater[i]] - arr[i]))
return max_diff
Calculate Difference โ
n = len(arr)
next_greater = [-1] * n
stack = []
for i in range(n):
while stack and arr[i] > arr[stack[-1]]:
next_greater[stack.pop()] = i
stack.append(i)
max_diff = float('-inf')
for i in range(n):
if next_greater[i] != -1:
max_diff = max(max_diff, abs(arr[next_greater[i]] - arr[i]))
return max_diff
Calculate Difference โ
def is_prime(num):
if num < 2:
return False
for i in range(2, int(num**0.5) + 1):
if num % i == 0:
return False
return True
def max_distance_between_primes(arr):
primes = [i for i in arr if is_prime(i)]
if len(primes) < 2:
return -1
max_distance = 0
for i in range(1, len(primes)):
distance = primes[i] - primes[i - 1]
max_distance = max(max_distance, distance)
return max_distance
Maximum prime difference โ
if num < 2:
return False
for i in range(2, int(num**0.5) + 1):
if num % i == 0:
return False
return True
def max_distance_between_primes(arr):
primes = [i for i in arr if is_prime(i)]
if len(primes) < 2:
return -1
max_distance = 0
for i in range(1, len(primes)):
distance = primes[i] - primes[i - 1]
max_distance = max(max_distance, distance)
return max_distance
Maximum prime difference โ
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
int solve(ll n){ ll i; ll a = 0; ll b = 1; for (i = 2; i <= n; i++) { ll c = a+b; a=b; b=c; } return (2*b)%mod; } Lucky Strings โ
int n=sc.nextInt(),i;
long dp[]=new long[n+1];
dp[1]=2L;
dp[2]=2L;
for(i=3;i<=n;i++) dp[i]=(dp[i-1]+dp[i-2])%mod;
System.out.println(dp[n]%mod);
Lucky strings โ
long dp[]=new long[n+1];
dp[1]=2L;
dp[2]=2L;
for(i=3;i<=n;i++) dp[i]=(dp[i-1]+dp[i-2])%mod;
System.out.println(dp[n]%mod);
Lucky strings โ
#include<bits/stdc++.h>
using namespace std;
string solve(int x1, int y1, int r1, int x2, int y2, int r2) {
int distSq = (x1 - x2) * (x1 - x2) + (y1 - y2) * (y1 - y2);
int radSumSq = (r1 + r2) * (r1 + r2);
if (distSq == radSumSq)
return "Touching";
else if (distSq == 0) {
if (r1 == r2)
return "Concentric";
else
return "Disjoint-Inside";
}
else if (distSq > radSumSq)
return "Disjoint-Outside";
else
return "Intersecting";
}
vector<string> circles(vector<string> circlePairs) {
vector<string> result;
for (const string& pair : circlePairs) {
stringstream ss(pair);
int x1, y1, r1, x2, y2, r2;
ss >> x1 >> y1 >> r1 >> x2 >> y2 >> r2;
result.push_back(solve(x1, y1, r1, x2, y2, r2));
}
return result;
}
IBM โ
using namespace std;
string solve(int x1, int y1, int r1, int x2, int y2, int r2) {
int distSq = (x1 - x2) * (x1 - x2) + (y1 - y2) * (y1 - y2);
int radSumSq = (r1 + r2) * (r1 + r2);
if (distSq == radSumSq)
return "Touching";
else if (distSq == 0) {
if (r1 == r2)
return "Concentric";
else
return "Disjoint-Inside";
}
else if (distSq > radSumSq)
return "Disjoint-Outside";
else
return "Intersecting";
}
vector<string> circles(vector<string> circlePairs) {
vector<string> result;
for (const string& pair : circlePairs) {
stringstream ss(pair);
int x1, y1, r1, x2, y2, r2;
ss >> x1 >> y1 >> r1 >> x2 >> y2 >> r2;
result.push_back(solve(x1, y1, r1, x2, y2, r2));
}
return result;
}
IBM โ
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
#include<bits/stdc++.h> using namespace std; string solve(int x1, int y1, int r1, int x2, int y2, int r2) { int distSq = (x1 - x2) * (x1 - x2) + (y1 - y2) * (y1 - y2); int radSumSq = (r1 + r2) * (r1 + r2); if (distSq == radSumSq) returnโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
role of "Data Engineer".
Skills: Data Engineering, SQL, Python, Spark, Kafka, Big Data / Cloud DWH
Work mode: Bangalore โ Hybrid / Other locations โ Remote
Interview Rounds: 2 (G-Meet)
Notice Period: Immediate to max 10 days.
If interested, please share your CV to the below email id.
Email: Madhumita.jadhav@nuvento.com
Skills: Data Engineering, SQL, Python, Spark, Kafka, Big Data / Cloud DWH
Work mode: Bangalore โ Hybrid / Other locations โ Remote
Interview Rounds: 2 (G-Meet)
Notice Period: Immediate to max 10 days.
If interested, please share your CV to the below email id.
Email: Madhumita.jadhav@nuvento.com
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Droom is hiring for HR Interns
Location- Gurgaon, Sector 18
Internship Tenure: 4-6 months
We are looking for immediate joiners!
Please share your resumes at unnati.ghosh@droom.in
Location- Gurgaon, Sector 18
Internship Tenure: 4-6 months
We are looking for immediate joiners!
Please share your resumes at unnati.ghosh@droom.in
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Genpact is hiring for Talent Acquistion - Sourcing Specialist (NON-IT)
Current Location- NCR
Notice Period - Immediate to 15 days
RTO Mandate
Interested candidates can share their resume at mizba.mohammedshaikh@genpact.com with subject line "Application for Talent acquisition role"
Current Location- NCR
Notice Period - Immediate to 15 days
RTO Mandate
Interested candidates can share their resume at mizba.mohammedshaikh@genpact.com with subject line "Application for Talent acquisition role"
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Experience: Fresher ( Batch- 2024, 2023 )
Position: Full-Time Roles and Internship roles ( SDE, Data Analyst etc )
Apply - https://bit.ly/3SgS52O
Position: Full-Time Roles and Internship roles ( SDE, Data Analyst etc )
Apply - https://bit.ly/3SgS52O
practice.geeksforgeeks.org
Contest | Job-A-Thon 29 Hiring Challenge
We made sure that over 150+ resumes of our previous contest winners were shared with more than 20+ companies and we will continue to keep helping them find their dream jobs. Register and Participate in Job-A-Thon 29 and our team will Fast-track your resumesโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Nuvento Inc is hiring for Data Engineer!!
Skills: Data Engineering, SQL, Python, Spark, Kafka, BigData / Cloud DWH
Work mode: Remote
Notice Period: Immediate to max 10 days.
If interested, please share your CV to umaparameshwari@nuvento.com
Skills: Data Engineering, SQL, Python, Spark, Kafka, BigData / Cloud DWH
Work mode: Remote
Notice Period: Immediate to max 10 days.
If interested, please share your CV to umaparameshwari@nuvento.com
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Brassring
Intern (Technical-Engineering RTL FE Design) - Synopsys - Job Details
Job Details: At Synopsys, we are Powering new era of innovation for high-performance silicon chips and exponentially growin
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Wati is Hiring !!
Role: Software Engineer Intern
Location: Remote
๐Apply here: https://www.linkedin.com/jobs/view/3793357598
Role: Software Engineer Intern
Location: Remote
๐Apply here: https://www.linkedin.com/jobs/view/3793357598
Linkedin
Wati hiring Software Engineer Intern in India | LinkedIn
Posted 2:05:35 PM. About WATI:Wati is a growing CPaaS platform that provides end-to-end WhatsApp API solutions forโฆ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)
Zepto is #hiring professionals for a Frontend SDE 1 (2023 Grads).
If you love making beautiful, performant and accessible web applications using React, please do the assignment attached and send your solution to gaurav.thakur@zeptonow.com along with your Resume.
They will prefer 2023 graduates and React is a mandatory skill for this role. Thanks!
Assignment: https://shorturl.at/JKY35
Deadline: 16th Jan, 2024 (EOD)
If you love making beautiful, performant and accessible web applications using React, please do the assignment attached and send your solution to gaurav.thakur@zeptonow.com along with your Resume.
They will prefer 2023 graduates and React is a mandatory skill for this role. Thanks!
Assignment: https://shorturl.at/JKY35
Deadline: 16th Jan, 2024 (EOD)
Google Docs
FE1
You have to design and implement a chip component that looks like below Video Example https://drive.google.com/file/d/1sy-YAhX1FYFImjLj1uXNilb7DHlbuveh/view?usp=sharing Specifications When you click on the input field, a list of items will appear. As youโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐UPS is Hiring !!
Role: Software Engineer Developer
Batch: 2023
Expected CTC: 7-10
Lpa
๐Apply here: https://www.jobs-ups.in/job/-/-/33100/59843745216
Role: Software Engineer Developer
Batch: 2023
Expected CTC: 7-10
Lpa
๐Apply here: https://www.jobs-ups.in/job/-/-/33100/59843745216
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Mercari, Inc.
Program: Build at Mercari 2024, Software Engineer (Training) Get Trained for 2 weeks and then invitation for interviews for an internship
Role: Build Intern (1 Month) Summer Intern (2 months)
Batch eligible: 2027, 2026, 2025, 2024, 2023, 2022 and 2021 passouts
Location: Remote Expected
Stipend: INR 50K per month or more Application
deadline: January 15, 2024
https://apply.workable.com/mercari/j/2D079007DB/
Program: Build at Mercari 2024, Software Engineer (Training) Get Trained for 2 weeks and then invitation for interviews for an internship
Role: Build Intern (1 Month) Summer Intern (2 months)
Batch eligible: 2027, 2026, 2025, 2024, 2023, 2022 and 2021 passouts
Location: Remote Expected
Stipend: INR 50K per month or more Application
deadline: January 15, 2024
https://apply.workable.com/mercari/j/2D079007DB/
Workable
Mercari, inc.
mercari careers
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐จJOB OPENING UPDATE๐จ
Company โ SAZ India
Role โ Junior Data Analyst
Exp. โ 0-1 yrs
Apply Here โ https://www.linkedin.com/jobs/view/3806267870
Company โ SAZ India
Role โ Data Analyst Fresher
Exp. โ 0-1 yr
Apply Here โ https://www.linkedin.com/jobs/view/3806276028
Company โ WCG
Role โ AI Engineer
Exp. โ Fresher
Apply Here โ https://www.linkedin.com/jobs/view/3806244882
Company โ Leading IT Co.
Role โ Data Scientist
Exp. โ 0-5 yrs
Apply Here โ https://www.naukri.com/job-listings-data-scientist-leading-it-co-visakhapatnam-hindco-recruitment-consultants-vijayawada-andhra-pradesh-visakhapatnam-andhra-pradesh-guntur-andhra-pradesh-0-to-5-years-130124003990?src=sortby&sid=17053009075136849_1&xp=3&px=1&nignbevent_src=jobsearchDeskGNB
Company โ CLOUDSUFI
Role โ Data Engineer
Exp. โ Fresher, Experienced
Apply Here โ https://www.simplyhired.co.in/job/kaGgRoEupF1ERJvfnpFdjbL5e999vrLOoyHOk53MI7aft8DOMA_oxw
Company โ Patenti Technology Solutions
Role โ Machine Learning Intern
Exp. โ Fresher
Apply Here โ https://internshala.com/internship/detail/machine-learning-internship-in-bangalore-at-patenti-technology-solutions1704976556?utm_source=cp_link&referral=web_share
Company โ Village Company
Role โ Generative AI Intern (Remote)
Exp. โ Fresher
Apply Here โ https://internshala.com/internship/detail/generative-ai-work-from-home-job-internship-at-village-company1705164201?utm_source=cp_link&referral=web_share
Company โ Genius AI Solutions
Role โ Data Science Intern (Remote)
Exp. โ Fresher
Apply Here โ https://internshala.com/internship/detail/data-science-work-from-home-job-internship-at-genius-ai-solutions1705000259?utm_source=cp_link&referral=web_share
Company โ Avaari
Role โ Machine Learning Intern
Exp. โ Fresher
Apply Here โ https://internshala.com/internship/detail/machine-learning-work-from-home-job-internship-at-avaari1705138982?utm_source=cp_link&referral=web_share
Company โ Aviac Technologies
Role โ Data Analytics Intern
Exp. โ Fresher
Apply Here โ https://internshala.com/internship/detail/data-analytics-work-from-home-job-internship-at-aviac-technologies1704963415?utm_source=cp_link&referral=web_share
Company โ SAZ India
Role โ Junior Data Analyst
Exp. โ 0-1 yrs
Apply Here โ https://www.linkedin.com/jobs/view/3806267870
Company โ SAZ India
Role โ Data Analyst Fresher
Exp. โ 0-1 yr
Apply Here โ https://www.linkedin.com/jobs/view/3806276028
Company โ WCG
Role โ AI Engineer
Exp. โ Fresher
Apply Here โ https://www.linkedin.com/jobs/view/3806244882
Company โ Leading IT Co.
Role โ Data Scientist
Exp. โ 0-5 yrs
Apply Here โ https://www.naukri.com/job-listings-data-scientist-leading-it-co-visakhapatnam-hindco-recruitment-consultants-vijayawada-andhra-pradesh-visakhapatnam-andhra-pradesh-guntur-andhra-pradesh-0-to-5-years-130124003990?src=sortby&sid=17053009075136849_1&xp=3&px=1&nignbevent_src=jobsearchDeskGNB
Company โ CLOUDSUFI
Role โ Data Engineer
Exp. โ Fresher, Experienced
Apply Here โ https://www.simplyhired.co.in/job/kaGgRoEupF1ERJvfnpFdjbL5e999vrLOoyHOk53MI7aft8DOMA_oxw
Company โ Patenti Technology Solutions
Role โ Machine Learning Intern
Exp. โ Fresher
Apply Here โ https://internshala.com/internship/detail/machine-learning-internship-in-bangalore-at-patenti-technology-solutions1704976556?utm_source=cp_link&referral=web_share
Company โ Village Company
Role โ Generative AI Intern (Remote)
Exp. โ Fresher
Apply Here โ https://internshala.com/internship/detail/generative-ai-work-from-home-job-internship-at-village-company1705164201?utm_source=cp_link&referral=web_share
Company โ Genius AI Solutions
Role โ Data Science Intern (Remote)
Exp. โ Fresher
Apply Here โ https://internshala.com/internship/detail/data-science-work-from-home-job-internship-at-genius-ai-solutions1705000259?utm_source=cp_link&referral=web_share
Company โ Avaari
Role โ Machine Learning Intern
Exp. โ Fresher
Apply Here โ https://internshala.com/internship/detail/machine-learning-work-from-home-job-internship-at-avaari1705138982?utm_source=cp_link&referral=web_share
Company โ Aviac Technologies
Role โ Data Analytics Intern
Exp. โ Fresher
Apply Here โ https://internshala.com/internship/detail/data-analytics-work-from-home-job-internship-at-aviac-technologies1704963415?utm_source=cp_link&referral=web_share
Linkedin
SAZ India hiring Junior Data Analyst (Any Graduate)- in Mysuru, Karnataka, India | LinkedIn
Posted 2:08:57 PM. Execute and develop approaches to answer business objectives through extracting insights by analyzeโฆ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)
Linkedin
Nitin Das on LinkedIn: Walmart Refferal Form | 118 comments
Walmart Global Tech India is hiring 2023 pass-outs!!!
๐๐๐ซ๐ ๐ข๐ฌ ๐ญ๐ก๐ ๐ฅ๐ข๐ฌ๐ญ ๐จ๐ ๐๐ฅ๐ข๐ ๐ข๐๐ข๐ฅ๐ข๐ญ๐ฒ ๐๐ซ๐ข๐ญ๐๐ซ๐ข๐:
- 2023 pass-outs from yourโฆ | 118 comments on LinkedIn
๐๐๐ซ๐ ๐ข๐ฌ ๐ญ๐ก๐ ๐ฅ๐ข๐ฌ๐ญ ๐จ๐ ๐๐ฅ๐ข๐ ๐ข๐๐ข๐ฅ๐ข๐ญ๐ฒ ๐๐ซ๐ข๐ญ๐๐ซ๐ข๐:
- 2023 pass-outs from yourโฆ | 118 comments on LinkedIn