Tip 1 : go through others experience to know the pattern
Tip 2 : clearly tell your thought process to interviewer
Tip 1 : Avoid adding irrelevant skills achievements
Tip 2 : add deployed links to projects
Mathematical problem with conditions, sorting
Step 1: wrote code for the given cases
Step 2: checked for corner cases
Step 3: try optimisation
Work Simulation test
Tip 1: analyse given data
Tip 2: check feasability
Tip 3: select most suitable option



Let ‘ARR’ be: [1, 4, -5]
The subarray [1, 4, -5] has a sum equal to 0. So the count is 1.
Step 1: discuss naive approach
Step 2: optimise the approach
Step 3: write code
Step 4: discuss corner cases



1. The heights of the buildings are positive.
2. Santa starts from the cell (0, 0) and he has to reach the building (N - 1, M - 1).
3. Santa cannot leave the grid at any point of time.
Step1 : brute force approach
Step 2: cover corner cases
Step 3: optimisation
Designing classes and methods for given problem
Tip 1: Understand requirement and discuss naive approach
Tip 2: Design the solution
Tip 3: optimise based on follow up questions

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?