๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ pinned ยซ๐ช๐ชFor IBM Exam Help On 19 April 11 AM https://t.me/sup777exams โ
Share in ur College WhatsApp Groups ๐ Share as much you can...ยป
โ
โ
โ
#Amazon Reverse Array Queries - Python Amazon Test Solutions
๐ t.me/sup777exams
def performOperations(arr, operations):
for i in operations:
arr[i[0]:i[1]+1]=reversed(arr[i[0]:i[1]+1])
return arr
โ
Share in ur College WhatsApp Groups๐ t.me/sup777exams
๐1
โ
โ
โ
#Amazon Minimize Memory - Python Amazon Test Solutions
โ Share in ur College WhatsApp Groups
๐ t.me/sup777exams
โ Share in ur College WhatsApp Groups
๐ t.me/sup777exams
๐ WIPRO INTERVIEW EXPERIENCE(ECE)
1. Self inductance
2.project
3.project related question
4. Microprocessor vs Microcontrollers(only for ece student)
5. Which programming language you know?
6.programing related questions(3 questions asked me)
7. Where is your Hometown?
8. Sign in bond
9. Any backlog
10. Education gap
11. Relocate any where
Above this type of questions asked form wipro
1. Self inductance
2.project
3.project related question
4. Microprocessor vs Microcontrollers(only for ece student)
5. Which programming language you know?
6.programing related questions(3 questions asked me)
7. Where is your Hometown?
8. Sign in bond
9. Any backlog
10. Education gap
11. Relocate any where
Above this type of questions asked form wipro
๐2
๐Amazon Interview Experiences SDE 1
https://leetcode.com/discuss/interview-experience?currentPage=1&orderBy=hot&query=
#Happy Learning
https://leetcode.com/discuss/interview-experience?currentPage=1&orderBy=hot&query=
#Happy Learning
Leetcode
Loading...
Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.
๐1
โ
โ
โ
#Amazon Minimize Memory - Python Amazon Test Solutions
โ Share in ur College WhatsApp Groups
๐ t.me/sup777exams
โ Share in ur College WhatsApp Groups
๐ t.me/sup777exams
โ
โ
โ
#Amazon Package Get Minimium Cost - Parcels - Python Amazon Test Solutions
โ Share in ur College WhatsApp Groups
๐ t.me/sup777exams
โ Share in ur College WhatsApp Groups
๐ t.me/sup777exams
โ
โ
โ
HackerRank Validating Strings with RegEx - Java HackerRank Solutions - Amazon Code
๐ t.me/sup777exams
final static String regularExpression = "([ab])([ab]*\\1)?";
โ
Share in ur College WhatsApp Groups๐ t.me/sup777exams
๐1
๐ช๐ชFor Amazon Help โ> ๐ Get All Working Answers โ> ๐ฃ
๐ก Join Fast โ->
https://t.me/sup777exams
โ Share in ur College WhatsApp Groups
๐ Share as much you can...
๐ก Join Fast โ->
https://t.me/sup777exams
โ Share in ur College WhatsApp Groups
๐ Share as much you can...
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ pinned ยซ๐ช๐ชFor Amazon Help โ> ๐ Get All Working Answers โ> ๐ฃ ๐ก Join Fast โ-> https://t.me/sup777exams โ
Share in ur College WhatsApp Groups ๐ Share as much you can...ยป
๐ Infosys Off Campus Drive | Digital Hiring | 9.5 LPA
* Job Role : Specialist Programmer(9.5 LPA) & Digital Specialist Engineer (6.25 LPA)
* Education : BE, B.Tech, ME, M.Tech, MCA, MSc
* Branch : All Branches Eligible
* Batch : 2019, 2020, 2021, 2022
* CTC : 6.25 LPA To 9.5 LPA
https://fresherearth.blogspot.com/2022/03/Infosys-Off-Campus-Drive-Digital-Hiring-9.5-LPA.html
โ Share with your friends
* Job Role : Specialist Programmer(9.5 LPA) & Digital Specialist Engineer (6.25 LPA)
* Education : BE, B.Tech, ME, M.Tech, MCA, MSc
* Branch : All Branches Eligible
* Batch : 2019, 2020, 2021, 2022
* CTC : 6.25 LPA To 9.5 LPA
https://fresherearth.blogspot.com/2022/03/Infosys-Off-Campus-Drive-Digital-Hiring-9.5-LPA.html
โ Share with your friends
๐Volvo Off Campus Drive 2022 : Hiring for Freshers Engineers With 10 LPA
Job Role Engineers
Qualification B.E/B.Tech/M.E/M.Tech
Batch 2020/2021/2022
Experience Freshers
CTC 7.5 LPA-10 LPA
https://fresherearth.blogspot.com/2022/04/Volvo-Off-Campus-Drive-2022-Hiring-for-Freshers-Engineers-With-10-LPA.html
โ Share with your friends
Job Role Engineers
Qualification B.E/B.Tech/M.E/M.Tech
Batch 2020/2021/2022
Experience Freshers
CTC 7.5 LPA-10 LPA
https://fresherearth.blogspot.com/2022/04/Volvo-Off-Campus-Drive-2022-Hiring-for-Freshers-Engineers-With-10-LPA.html
โ Share with your friends
๐2
private static long getMinimumCost(List<Integer> parcels, int k){
Set<Integer> set = new HashSet<>(parcels);
int i = 1;
long cost = 0;
while(set.size() != k){
if(!set.contains(i)){
set.add(i);
cost += i;
}
i++;
}
return cost;
}
โ โ โ #Amazon Package Get Minimium Cost - Parcels - Java8 Amazon Test Solutions
โ Share in ur College WhatsApp Groups
๐ t.me/sup777exams
Set<Integer> set = new HashSet<>(parcels);
int i = 1;
long cost = 0;
while(set.size() != k){
if(!set.contains(i)){
set.add(i);
cost += i;
}
i++;
}
return cost;
}
โ โ โ #Amazon Package Get Minimium Cost - Parcels - Java8 Amazon Test Solutions
โ Share in ur College WhatsApp Groups
๐ t.me/sup777exams
๐ Bitwise Off Campus Drive Software Engineer Trainee 4 LPA
* Job Role : Software Engineer Trainee
* Education : BE, B.Tech
* CTC : 4 LPA
https://fresherearth.blogspot.com/2022/04/bitwise-off-campus-drive-4-lpa.html
โ Share with your friends
* Job Role : Software Engineer Trainee
* Education : BE, B.Tech
* CTC : 4 LPA
https://fresherearth.blogspot.com/2022/04/bitwise-off-campus-drive-4-lpa.html
โ Share with your friends
๐ช๐ชFor IBM Exam Help On 18 April 11 AM
https://t.me/sup777exams
โ Share in ur College WhatsApp Groups
๐ Share as much you can...
https://t.me/sup777exams
โ Share in ur College WhatsApp Groups
๐ Share as much you can...
๐1