Tip 1 : Learn the concepts, not the solutions.
Tip 2 : You should have deep knowledge about the projects mentioned in your resume.
Tip 1 : Resume should be only 1 page.
Tip 2 : Try to tell a story through your resume. For e.g. - always mention the impact or scale of your projects/internship.
The test had 3 questions that had to be solved in 75 minutes. The test was of medium difficulty.



1. You can assume that all the meetings will happen on the same day.
2. Also, as soon as a meeting gets over if some other meeting is scheduled to start at that moment, they can then be allocated that room.
Try to solve the problem in linear time complexity.
Consider there are three meetings scheduled with timings:
1pm - 4pm
3pm - 5pm
4pm - 6pm
At the start of time, meeting 1 will be allotted room 1, which will be occupied till 4 pm hence for meeting 2 we’ll have to provide another room. At 4 pm, meeting 3 can be organized in room 1 because by that time, meeting 1 would have ended. Hence we’ll require two rooms for holding all three meetings.



1. The maximum obtainable value can always be stored in 64-bit memory space.
2. The given number 'X' is always non-negative.



If the given array is: [2 6 7 7 10] and K = 2. We need to remove A[0] = 2 and A[4] = 10, then the resultant array would become [6 7 7], where the difference between adjacent pairs are {1, 0}. Thus our answer would be 1. You can see that there would not be any better answer than 1 for this array



1. If 'X' is not found in the array, return 0.
2. The given array is sorted in non-decreasing order.



1. The grid has 0-based indexing.
2. A rotten orange can affect the adjacent oranges 4 directionally i.e. Up, Down, Left, Right.




There was only 1 interviewer in this round, and We had no video sharing in this round so it was becoming difficult to understand each other.
OOD question, design a parking lot. Expectation was writing clean readable code using OOD principles. (Learn)
Tip 1 : Must have knowledge of LLD/HLD.
Tip 2 : Good at design patterns.
Introduce yourself.
What do you know about the work culture here in Amazon?
Why should we hire you?
Where do you see yourself in 3 years?

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?