Tip 1 : Prepares graphs well
Tip 2 : Focus over core java
Tip 3 : Node Js is also important
Tip 1 : Prepare one page resume
Tip 2 : Java was the main focus
No specific timeline,
Hackerrank environment was used



1. You can delete a character from any position.
2. You can replace a character with any other character.
3. You can insert a character at any position.
1. The strings are non-empty.
2. The strings only contain lowercase English letters.
Timing : Early morning
Hackerrank environment was used for testing.
Interviewer was really helpful
I was asked to explain my project and then was asked questions on Deadlocks with it's implementation in C++ or any other language of preference. Here, the focus was not on syntax but logic.
Using multithreading, create a program in C++ with one tread being dependent over the previous for a resource, now make the previous thread to wait. So we got a deadlock



Can you solve each query in O(logN) ?
Timings : afternoon
Environment : Hackerrank
Interviewer was not much helpful





Create a function that checks after assigning the current index the grid becomes unsafe or not. Keep Hashmap for a row, column and boxes. If any number has a frequency greater than 1 in the hashMap return false else return true; hashMap can be avoided by using loops.
Create a recursive function that takes a grid.
Check for any unassigned location. If present then assign a number from 1 to 9, check if assigning the number to current index makes the grid unsafe or not, if safe then recursively call the function for all safe cases from 0 to 9. if any recursive call returns true, end the loop and return true. If no recursive call returns true then return false.
If there is no unassigned location then return true.
Timings : Evening
Hiring manger + Low Level Design Round
Interviewer was very helpful
Create a parking lot Low level design using object oriented programming concepts
Tip 1 : Ask clearly regarding the requirements
Tip 2 : Start development with easy requirements
Tip 3 : Focus over extension and compatibility

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?