Tip 1 : Do lots of competitive programming
Tip 2 : Create a nice portfolio on any coding platform like LeetCode or CodeChef because it will attract recruiter's.
Tip 3 : Pick only one Programming language for coding because it will help you to learn syntax by heart.
Tip 1 : Try to make resume of single column because it easily bypass the parser/scanner
Tip 2 : Do not put false things and over skills in your resume.
Tip 3 : Either you are fresher or experienced still don't make resume more than 2 pages.
Timing-90 Duration Of Assessment
you need to give the test within 5 days of getting the test mail.
Test is conducted virtually through Hackerrank platform and after that it redirects to Amazon page where we need to answer questions related to Amazon’s Leadership Principles and workstyles.



Step 1 first create a array/list variable of size same as given size of m x n grid and assign 1st ROW & COL to 1.
Step 2 Create a loop for row (starting from 1 to m) and then Create a loop for col (starting from 1 to n)
Step 3 Using 2 for loops u need to add top row value and left column value as compare to current array index. and then store the updated value to current array index.
Step 4 at the end of the loop just return last array index value.
Solution:-
dp = [[1]*n]*m
for i in range(1,m):
for j in range(1,n):
dp[i][j] = dp[i-1][j] + dp[i][j-1]
return dp[m-1][n-1]



If the input tree is as depicted in the picture:
The Left View of the tree will be: 2 35 2
Don't know the solution at the time of interview.
But now I know:-
Step 1 first initialize the queue
Step 2 then number of nodes at current level
Step 3 Traverse all nodes of current level
Step 4 Print the left most element at the level
Step 5 then Add left node to queue if left child exists
Step 6 Add right node to queue if right child exists and then return the queue
we need to answer questions related to Amazon’s Leadership Principles, candidate behavior questions and workstyles.
For Example-
Do you agree with your seniors whether that guy is correct or not.
Are you open to learn new technology or still want to work on those technologies on which you are familiar.
We need to solve 1 or 2(based on interviewer) coding question within 1 hour in which we need to explain our approach before writing the code and we need to give optimal solution of the approach.




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?