Tip 1 : Solve Coding Problem related to Graphs, DP, Binary Search
Tip 2 : Brush up the basic CS subjects
Tip 3 : Have atleast one interesting project on your Resume
Tip 1 : Highlight your achievements
Tip 2 : Be prepared about mentioned projects and skills
3 hours to solve one coding problem related to graph algorithm



In the below map of Ninjaland let say you want to go from S=1 to T=8, the shortest path is (1, 3, 8). You can also go from S=1 to T=8 via (1, 2, 5, 8) or (1, 4, 6, 7, 8) but these paths are not shortest.

Created adjancey matrix based on the condition and applying standard graph travesal algorithm BFS
Technical Interview, questions related to DS and projects
In-depth questions related to project development
Tip 1: Be prepared about your projects in depth
Tip 2: Be confident in your answers
Tip 3: Don't lie on resume
HR Round
Brief description of projects, family background, my likes and dislikes, preferred field to work and hiring experience
Tip 1: Practise your communication skills
Tip 2: Do SWOT analysis
Tip 3: Be confident

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?