Tip 1 : Practice on CodeStudio
Tip 2 : Prepare a good resume
Tip 3 : May prefer solving the SDE sheet provided on CodeStudio
Tip 1 : Put your entire valuable experience in brief
Tip 2 : Try to put those things that really attracts the recruiter, will be better if your past experiences relates to the company
Round was held in the morning probably 10 or 11 am, the test window was open for 90 minutes and one can give the test anytime in that 1.5 hour.
Consider ARR = [1, 2, 3, 4, 4], the duplicate integer value present in the array is 4. Hence, the answer is 4 in this case.
A duplicate number is always present in the given array.
This round was scheduled on 12th Nov, almost after 30 days of the previous technical round. I got the confirmation of passing the previous round on 10th Nov and was asked to appear in this final round which was scheduled on 15th Nov at 11:00 am in the morning and it was going to be an HR round which probably was my favorite among all the other rounds.
I prepared for the same by reading interview experiences available at coding ninjas.
• 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.
Level 1:
All the nodes in the left subtree of 4 (2, 1, 3) are smaller
than 4, all the nodes in the right subtree of the 4 (5) are
larger than 4.
Level 2 :
For node 2:
All the nodes in the left subtree of 2 (1) are smaller than
2, all the nodes in the right subtree of the 2 (3) are larger than 2.
For node 5:
The left and right subtrees for node 5 are empty.
Level 3:
For node 1:
The left and right subtrees for node 1 are empty.
For node 3:
The left and right subtrees for node 3 are empty.
Because all the nodes follow the property of a binary search tree, the above tree is a binary search tree.
Why do you want to join Walmart Labs?
What are your salary expectations?
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is 3 + 2 * 4 based on operator precedence?