Tip 1: Prepare DSA well, and I personally recommend Coding Ninjas for interview preparation.
Tip 2: Be confident and relaxed during the interview.
Tip 3: Make sure to review your projects, including how they work and their functionalities.
Tip 1: Keep your resume concise, aiming for one page, and include only the skills you are confident in.
Tip 2: Avoid including any false information on your resume.
There was only one coding question, which was highly proctored and of an advanced level.



Choose two nodes ‘X’ and ‘Y’, such that there exists an edge from ‘X’ to ‘Y’.
Delete edge ‘X’ to ‘Y’.
Add edge ‘Y’ to ‘X’.



1. Each of the digits 1 - 9 must occur exactly once in each row.
2. Each of the digits 1 - 9 must occur exactly once in each column.
3. Each of the digits 1 - 9 must occur exactly once in each of the 9, 3 x 3 sub-matrices of the matrix.
1. There will always be a cell in the matrix which is empty.
2. The given initial matrix will always be consistent according to the rules mentioned in the problem statement.
Technical Interviewer asked Dynamic Programming related questions and Project related questions.



[1, 2, 3, 4] is a strictly increasing array, while [2, 1, 4, 3] is not.

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?