Tip 1 : Focus more and more on competitive coding
Tip 2 : Try to build nice portfolio on any coding platform like LeetCode or CodeChef because it will attract any recruiter.
Tip 3 : Prepare any one and only one language for coding because it will help you to learn syntax by heart.
Tip 1 : Don't write over skills in your resume.
Tip 2 : Don't make resume more than 2 pages.
Timing-no such timings.
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.




The left view of the above binary tree is {5, 7, 14, 25}.
Step 1 first initialize the queue
Step 2 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 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-
Are you open to listen others opinion whether that guy is correct or not
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.



Still i don't know it's solution so i can't.
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



• The left subtree of a node contains only nodes with data less than the node’s data.
• The right subtree of a node contains only nodes with data greater than the node’s data.
• Both the left and right subtrees must also be binary search trees.
It is guaranteed that a BST can be always constructed from the given preorder traversal. Hence, the answer will always exist.
From PREORDER = [20, 10, 5, 15, 13, 35, 30, 42] , the following BST can be constructed:

Through recursion i solved this question
return [root.val],self.inorder(root.left),self.inorder(root.right)



For the given binary tree [1, 2, 3, -1, -1, 4, 5, -1, -1, -1, -1]
1
/ \
2 3
/ \
4 5
Output: 1 3 2 4 5
I don't know it's solution so i can't.

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?