Tip 1 : Data Structures must be at top priority
Tip 2 : must know some basic low level design
Tip 3 : computer science fundamentals and resume should be prepared well
Tip 1 : Good projects with web development or machine learning
Tip 2 : must mention your coding profiles



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.
Think of recursive solution
Then memoise the code



[1, 2, 3, 4] is a strictly increasing array, while [2, 1, 4, 3] is not.
Suggest basic recursive approach first
Then try to memoise the code



'S' = "{}()".
There is always an opening brace before a closing brace i.e. '{' before '}', '(' before ').
So the 'S' is Balanced.



1. There might be duplicates present in the array.
2. The order of the permutations in the output does not matter.
3. Do not use any kind of in-built library functions to find the answer.
Suggesting low level design for parking lot
Design chat application
water mug Puzzle
Salary related and basic hr question

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?