Tip 1 : Consistency is the key, Love and believe in the process.
Tip 2 : Start off by solving 50 easy questions.
Tip 3 : Solve the problem on pen and paper, and write the entire code. And then start coding on the IDE.
Tip 1 : Pen down impactful statements, make sure you are not re-writing the job description.
Tip 2 : Maintain a short and crip resume with a consistent format on font and dates.
I was asked two medium-level coding questions from the leetcode top amazon interview questions list.
1. Longest Substring Without Repeating Characters.
2. Remove Nth Node From End of List



Input : 1 -> 2 -> 3 -> 4 -> 'NULL' and 'K' = 2
Output: 1 -> 2 -> 4 -> 'NULL'
Explanation:
After removing the second node from the end, the linked list become 1 -> 2 -> 4 -> 'NULL'.




Behavioral questions that pop up MCQ questions and then simulator-based in office situations. This round is to test the leadership, and team-building skills.
After self-introduction, I was asked behavioral questions for 5 minutes on different situations like what would you do if you had a conflict with your teammate.
Later I was asked to solve the group anagram question. I was asked to write the code on an IDE and then dry run through the code with proper explanation.



The order in which the groups and members of the groups are printed does not matter.
inputStr = {"eat","tea","tan","ate","nat","bat"}
Here {“tea”, “ate”,” eat”} and {“nat”, “tan”} are grouped as anagrams. Since there is no such string in “inputStr” which can be an anagram of “bat”, thus, “bat” will be the only member in its group.

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?