Tip 1 : give mock interview
Tip 2 : practice a lot
Tip 1 : short and crisp
Tip 2 : use grammarly and edit your sentences with more numbers than english



For the array [ “TUNA”, “TIGER”, “RABBIT”, “RAT”, “ANTEATER” ],
A possible circle can be:

Design a vending machjne which syncs with a server


1. A balanced binary tree is a binary tree structure in which the left and right subtrees of every node differ in height by no more than 1.
2. A binary search tree is a binary tree data structure, with the following properties
a. The left subtree of any node contains nodes with value less than the node’s value.
b. The right subtree of any node contains nodes with values equal to or greater than the node’s value.
c. Right, and left subtrees are also binary search trees.
Below tree, is a balanced binary search tree

Below tree is not a balanced tree as the height of the left subtree and right subtree of node ‘5’ differs by more than 1. Moreover, the tree is also not a BST as node ‘2’ is less than node ‘3’ but ‘2’ is the right child of ‘3’.



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?