Tip 1 : Practise coding
Tip 2 : Do Amazon frequent questions from leetcode
Tip 3 : Be good with graphs, trees
Tip 1 : neat, brevity in resume
Tip 2 : Write your projects you have done
2 coding questions to be done in 1 hour. Then followed up with some English questions and some aptitude and logical reasoning based questions. Had a 24 hour window to solve the test.




If X = 6
If all three moves are taken to the right then the robot will end up at 1 + 2 + 3 = 6, so a minimum of three moves are needed.
1 hour interview where I was asked 2 coding questions



Input:
3
3
4 6 8
3
2 5 7
2
1 9
Output:
1 2 4 5 6 7 8 9
Explanation:
First list is: 4 -> 6 -> 8 -> NULL
Second list is: 2 -> 5 -> 7 -> NULL
Third list is: 1 -> 9 -> NULL
The final list would be: 1 -> 2 -> 4 -> 5 -> 6 -> 7 -> 8 -> 9 -> NULL



Suppose given input is "abacb", then the length of the longest substring without repeating characters will be 3 ("acb").

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?