J'ai postulé via un établissement d'enseignement supérieur ou universitaire. Le processus a pris 4 jours. J'ai passé un entretien chez Amazon (Patna, Bihar)
Entretien
It was an on-campus interview . The interviewer was very friendly . Even when you are stuck somewhere , he kept giving hints .He started the interview by introducing himself . Then he asked me to introduce myself . Then he asked about my projects .After these things , he came to coding questions .
Questions d'entretien [2]
Question 1
Q. You are given n meeting rooms . Time slots are given (starting time , ending time] in form of 2D vector. Find the minimum number of meeting rooms required so that all the m meetings can be arranged . You will need two meeting rooms if the timing of the meeting overlaps.
J'ai passé un entretien chez Amazon (Tel Aviv-Yafo)
Entretien
Applied online and received an Online Assessment. It consisted of two LeetCode-style coding problems with a time limit . The process was straightforward and fully automated with no human interaction at this stage.
Questions d'entretien [1]
Question 1
Solve a coding problem involving array manipulation under a timed online assessment
There were 2 rounds- one DSA round and one HR round.
In the first round they asked me a DP + trees question which was of medium to hard difficulty.
In the second round the interviewer asked me about my resume, my projects, some computer fundamental questions.
J'ai postulé via un établissement d'enseignement supérieur ou universitaire. J'ai passé un entretien chez Amazon en mai 2026
Entretien
This was an On Campus opportunity. First was the Online Assessment, which consisted of 2 questions, solved both. Then they scheduled two rounds of mandatory interviews, both focusing on DSA, Problem Solving, Behavioral Questions and GenAI Fluency,
Questions d'entretien [6]
Question 1
The first question was standard Longest Common Subsequence, interviewers expected me to first explain the brute force solution and then move on to the optimal approach.
"Tell me a time when you worked on a problem which was difficult for you".
"How do you use GenAI in your day to day work?"
"Tell me about a project where you've used GenAI"
Given an array, you can do a merge operation where you merge (or sum) two adjacent equal numbers, remove both the numbers, and replace with the new merged number. For example, [3 1 1] becomes [3 2]. Now you can operate infinite number of times, and you need to return the smallest final array after doing all the possible operations optimally, e.g. for [1 1 1 1] the answer will be [4] and not [1 2 1].