Tip 1 : Go through basics of data structure and algorithm.
Tip 2 : Focus specially on tree, graph and DP( 2D max).
Tip 3 : Detail understanding of everything written in resume
Tip 1 : Keep it clean, no need to use any styles or colour.
Tip 2 : Focus more on projects and experience.
Tip 3 : Use bullets, single lines to explain your work and project, don't be too lengthy, make is brief.
Tip 4 : one page resume is good, you can cut down things like unnecessary achievements
There are 4 easy brute force question.


Sort the array and iterate over it to get the anwer
There are 3 DS question, all are easy medium and medium level
A board can be divided in two halves which are to be given to two players and then you need to add ships for each players. Every player will get a chance to hit at any random point by missile and if it hits the opponent's ship, the ship will get destroyed. The players wins if all ships of its opponent are destroyed. Restrictions - You can hit missile at the same point two times in a game
Solved using binary search on 2D plane
There are 3 coding problems asked which need to coded and compiled



You are given ‘GRID’= [[“@.aA”],[“.B#.”],[“...b”]]. Then the answer will be 5.

There are back to back many question are asked, one have to give approach and pseudo, no need for compilable code




You can calculate height of tree for left and right subtree for each node whoever have less height move in that direction



1. Each wheel has 10 slots: ‘0’, ‘1’, ‘2’, ‘3’, ‘4’, ‘5’, ‘6’, ‘7’, ‘8’, ’9’.
2. The wheels can rotate freely and wrap around, ‘9’ can be left rotated to ‘8’ and right rotated to ‘0’, similarly ‘0’ can be right rotated to ‘1’ and left rotated to ‘9’. Rotation of one wheel counts to one rotation.
3. Initially, the lock starts at “0000”, a string representing the state of four wheels.
can be easily solved using level order traversal
it was hiring manager round, most discussion is based on my resume and previous work
The discussion is basically on my previous work, mostly whatever wrote in resume.
How you solved this problem and approach?
I have written whatever I done previously, no false project, so was able to explain it properly

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?