Tip 1 : Practice coding
Tip 2 : Learn various oops, ds concepts
Tip 3 : Prepare well what you wrote on resume
Tip 1 : Don't lie on resume
Tip 2 : Resume should be of 1 page
There were 2 coding questions



The distance between two points on a plane is the Euclidean Distance.
If N = 2, K = 1 and the points are {2,3}, {-1, 2}.
Then the distance of the first point from the origin is sqrt((2 - 0) ^ 2 + (3 - 0) ^ 2) = sqrt(13).
The distance of the second point from the origin is sqrt((-1 - 0) ^ 2 + (2 - 0) ^ 2) = sqrt(5).
Can you solve this in O(N log K) time complexity?

1 - Which means you can go from (i, j)-th cell to the (i, j+1)-th cell.
2 - Which means you can go from (i, j)-th cell to the (i, j-1)-th cell.
3 - Which means you can go from (i, j)-th cell to the (i+1, j)-th cell.
4 - Which means you can go from (i, j)-th cell to the (i-1, j)-th cell.
Technical interview round


Let 'STR' = "$$**".
There are consecutive "$$" in 'STR' and it is Ninja's turn to begin the game. So, Ninja changes the consecutive "$$" to "**". This changes 'STR' to "****".
Now, as it is his friend's turn and there are no more consecutive "$$", Ninja wins the game.
Tell me about a time you got a feedback and how did you react to it.
Tell me about a time you had to dive really deep to handle a crucial situation.

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?