Pretty straight forward. There were about 3 rounds. First was with the HR manager and a panel tech round followed by another tech round with team lead and Sr. Engineer
regular interview questions and can be found on line and prepare ds and algo questions. Behavior questions are also asked a lot
overall it's nothing surprising , google will find a tons of interview questions .
I applied online. I interviewed at Amazon Web Services (Sunnyvale, CA) in Aug 2024
Interview
The Amazon OAT on HackerRank features two parts: system design/behavioral and data structures algorithms. The technical portion includes medium difficulty LeetCode-style questions, offering a well-rounded evaluation of problem-solving and design skills.
Interview questions [1]
Question 1
OAT :
Given an array of integers (unsorted) and a value n indicating number of channels. You have to send all these numbers through n channels (At least one number should go through each channel)
You are given a 0-indexed integer array nums of length n.
nums contains a valid split at index i if the following are true:
The sum of the first i + 1 elements is greater than or equal to the sum of the last n - i - 1 elements.
There is at least one element to the right of i. That is, 0 <= i < n - 1.
Return the number of valid splits in nums.