Tip 1 : Practice questions regularly from leetcode, codestudio
Tip 2 : Participate in online contest to learn to solve questions under pressure
Tip 3 : Practice mock interviews before the actual interview
Tip 1 : Have at least 2 good projects mentioned in your resume with a link
Tip 2 : Focus on skills, internships, projects, and experiences.
Tip 3 : Make it simple, crisp, and one page
This is the technical round taken by the SDE at google.



If the dictionary consists of the following words:-
["caa", "aaa", "aab"], and 'K' is 3.
Then, the order of the alphabet is -
['c', 'a', 'b']
If the language consists of four letters, the four letters should be the starting four letters of the English language.
However, their order might differ in the alien language.



Let’s say N = 2. The strings of length 2, which satisfy the given constraints are: “aa”, “ab”, “ac”, “ba”, “bc”, “ca”, “cb”, “cc”. Hence, the output is 8.
This was the 2nd technical round in which data structure-based questions has been asked.


• 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.
Consider the following binary search tree. Suppose the given range is [ 15, 32 ] so we return ‘2’ as an answer as there are two nodes whose subtree is in the given range, the nodes are 20 and 30.

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?