I applied online. I interviewed at Amazon (Seattle, WA)
Interview
It was a quick interview. about an hour long. first asked question about projects I have worked on and then progressed into the technical interview which was a little hard.
Interview questions [1]
Question 1
Merge sort leetcode question but instead of two arrays I was asked to merge sort four arrays
I applied online. The process took 3 weeks. I interviewed at Amazon (Boston, MA) in Jul 2022
Interview
I had one technical interview in the form of an online technical assessment, followed by one final interview. The final interview consisted of one easy technical coding question and behavioral questions.
Interview questions [1]
Question 1
The asked me several LeetCode hard questions for the online assessment. The final round interview consisted of behavioral questions based on Amazon Leadership Principles, as well as an easy technical question
I applied online. I interviewed at Amazon (Bengaluru) in Aug 2022
Interview
The selection process consisted of three stages: two online assessments and two face-to-face interviews. The first online assessment included general core computer science questions and a coding question. The second round focused entirely on coding. During the face-to-face interviews, the third round involved medium-level data structures and algorithms questions, while the fourth round assessed behavioral aspects.
Interview questions [1]
Question 1
You are given an m x n grid where each cell can have one of three values: 0 representing an empty cell, 1 representing a fresh orange, or 2 representing a rotten orange. Every minute, any fresh orange that is 4-directionally adjacent to a rotten orange becomes rotten. Return the minimum number of minutes that must elapse until no cell has a fresh orange. If this is impossible, return -1. similar to this