def solution(queries, diff):
numbers = {}
output = []
for query in queries:
if "+" in query:
number = int(query.split("+")[1])
numbers[number] = numbers.get(number, 0) + 1
else:
number = int(query)
del numbers[number]
count = 0
for number in numbers:
count += numbers.get(number - diff, 0) * numbers.get(number + diff, 0)
output.append(count)
return output
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
HCLTech is hiring for Software Engineer/Software Developer
Expected Salary: 4-6 LPA
Batch: 2021-2023
Apply here:
https://linkedin.com/posts/activity-7203311339782500352-cjE9/
Expected Salary: 4-6 LPA
Batch: 2021-2023
Apply here:
https://linkedin.com/posts/activity-7203311339782500352-cjE9/
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Meta is hiring Software Engineers for its London Office
Referral Form :
https://docs.google.com/forms/d/1Hx_CAEqQyzSxRnYZxq_Sa9KE2Jn7HWgAs6xXCMSIRj4
Referral Form :
https://docs.google.com/forms/d/1Hx_CAEqQyzSxRnYZxq_Sa9KE2Jn7HWgAs6xXCMSIRj4
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
TCS BSc Ignite and Smart Hiring 2024:
Graduation Year: 2023 / 2024
Eligibility: BCA, B.Sc (IT, Computer Science, Mathematics, Data Science, Statistics, Physics, Chemistry, Electronics, Cyber Security, Biochemistry), B.Voc in CS/IT
CTC for Ignite - 2.8 LPA
CTC for Smart - 1.9 LPA
Register Now: https://www.tcs.com/careers/india/tcs-smart-hiring-2024
Last Date to Regsiter: 24th June
Graduation Year: 2023 / 2024
Eligibility: BCA, B.Sc (IT, Computer Science, Mathematics, Data Science, Statistics, Physics, Chemistry, Electronics, Cyber Security, Biochemistry), B.Voc in CS/IT
CTC for Ignite - 2.8 LPA
CTC for Smart - 1.9 LPA
Register Now: https://www.tcs.com/careers/india/tcs-smart-hiring-2024
Last Date to Regsiter: 24th June
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Tata1mg
๐ Job Title: SDE 1 (Frontend)
โ๐ป YOE: 0-2 years
โก๏ธ Apply: https://1mg.darwinbox.in/ms/candidate/careers/a66321e35c853c
Please do share in your college grps and in case you are applying please react on this post:) ๐โค๏ธ
๐ Job Title: SDE 1 (Frontend)
โ๐ป YOE: 0-2 years
โก๏ธ Apply: https://1mg.darwinbox.in/ms/candidate/careers/a66321e35c853c
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)
๐จJob Opening Updates๐จ
Company โ Oracuz Infotech Pvt Ltd
Role โ Data Science Intern
Exp. โ Fresher
Apply Here โ https://www.simplyhired.co.in/job/U44tuZ0b1xFLAqMw2dNuNWGetG7pNdEKVbIf7HbUqEq0hcb0X9ww6Q
Company โ Conscript HR Advisors Private Limited
Role โ Business Analytics Intern
Exp. โ Fresher
Apply Here โ https://internshala.com/internship/details/work-from-home-part-time-business-analytics-internship-at-conscript-hr-advisors-private-limited1717387959?utm_source=cp_link&referral=web_share
Company โ EMERGEiQ
Role โ Data Scientist
Exp. โ Fresher
Apply Here โ https://www.linkedin.com/jobs/view/3938463825
Company โ Oracuz Infotech Pvt Ltd
Role โ Data Science Intern
Exp. โ Fresher
Apply Here โ https://www.simplyhired.co.in/job/U44tuZ0b1xFLAqMw2dNuNWGetG7pNdEKVbIf7HbUqEq0hcb0X9ww6Q
Company โ Conscript HR Advisors Private Limited
Role โ Business Analytics Intern
Exp. โ Fresher
Apply Here โ https://internshala.com/internship/details/work-from-home-part-time-business-analytics-internship-at-conscript-hr-advisors-private-limited1717387959?utm_source=cp_link&referral=web_share
Company โ EMERGEiQ
Role โ Data Scientist
Exp. โ Fresher
Apply Here โ https://www.linkedin.com/jobs/view/3938463825
Internshala
Business Analytics Work From Home Part Time Internship at Conscript HR Advisors Private Limited
Selected intern's day-to-day responsibilities include:
1. Interact with business users to understand their problems and needs
2. Document and analyze business needs and requirements and communicate to the team
3. Develop requirements specificationsโฆ
1. Interact with business users to understand their problems and needs
2. Document and analyze business needs and requirements and communicate to the team
3. Develop requirements specificationsโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Degreed is hiring Junior Software Engineer
For 2024, 2023, 2022 grads
Location - Bangalore
Apply - https://boards.greenhouse.io/degreed/jobs/5193583004?gh_src=f16e0ebe4us
For 2024, 2023, 2022 grads
Location - Bangalore
Apply - https://boards.greenhouse.io/degreed/jobs/5193583004?gh_src=f16e0ebe4us
boards.greenhouse.io
Degreed
public static int minimumWinningMargin(int input1, int input2, int input3, int[] input4) {
int requiredTotalMargin = input1 * input3;
int currentTotalMargin = 0;
for (int i = 0; i < input4.length; i++) {
currentTotalMargin += input4[i];
}
int neededMargin = requiredTotalMargin - currentTotalMargin;
if (neededMargin <= input2) {
return Math.max(0, neededMargin);
} else {
return -1;
}
}
Qualifying Chances โ
Cognizant
int requiredTotalMargin = input1 * input3;
int currentTotalMargin = 0;
for (int i = 0; i < input4.length; i++) {
currentTotalMargin += input4[i];
}
int neededMargin = requiredTotalMargin - currentTotalMargin;
if (neededMargin <= input2) {
return Math.max(0, neededMargin);
} else {
return -1;
}
}
Qualifying Chances โ
Cognizant
public class Main {
public static int countSetBits(int number) {
return Integer.bitCount(number);
}
public static int countElementsWithSetBits(int[] arr, int N, int X) {
int count = 0;
for (int num : arr) {
if (countSetBits(num) == X) {
count++;
}
}
return count;
}.
SET BITSโ
public static int countSetBits(int number) {
return Integer.bitCount(number);
}
public static int countElementsWithSetBits(int[] arr, int N, int X) {
int count = 0;
for (int num : arr) {
if (countSetBits(num) == X) {
count++;
}
}
return count;
}.
SET BITSโ
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Genpect is hiring B.com/BBA/ MBA freshers or any accounting background for OTC/Order to Cash -Cash Applications skillset.
Job requirements:
. Good accounting knowledge
. Should understand OTC cycle
. Flexible to work in any shifts
. 5 days Work from Office.
. Office location- Gurgaon 22B
Interested candidates can share their resumes at the earliest at parul. chaturvedi1@genpact.com
Job requirements:
. Good accounting knowledge
. Should understand OTC cycle
. Flexible to work in any shifts
. 5 days Work from Office.
. Office location- Gurgaon 22B
Interested candidates can share their resumes at the earliest at parul. chaturvedi1@genpact.com
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
HyreSnap is hiring Frontend Intern
For 2024, 2025, 2026 grads
https://www.linkedin.com/posts/sayantan-s-554bb117a_hiring-react-internship-activity-7203672732679479296-hdy9?utm_source=share&utm_medium=member_android
For 2024, 2025, 2026 grads
https://www.linkedin.com/posts/sayantan-s-554bb117a_hiring-react-internship-activity-7203672732679479296-hdy9?utm_source=share&utm_medium=member_android
Linkedin
Sayantan S. on LinkedIn: #hiring #react #internship
Calling all passionate frontend devs!
We're looking for a Frontend intern to join our team @HyreSnap and help us build a beautiful, user-friendly experienceโฆ
We're looking for a Frontend intern to join our team @HyreSnap and help us build a beautiful, user-friendly experienceโฆ