Tip 1 : Do at least one internship
Tip 2 : Practice giving time-bound tests.
Tip 3 : Practice mock interviews with friends.
Tip 1 : Have some good ranks in competitive coding sites like Codeforces, CodeChef
Tip 2 : Regularly participate in google kick start and achieve some good ranks in it.
It was an online coding test consisting of two questions but i only remember one.



Down: (row+1,col)
Right: (row, col+1)
Down right diagonal: (row+1, col+1)
what was the most challenging I had come across and how I solved it. Then some questions regarding coding were asked.
Medium Of Interview



You don’t require to remove the leaf nodes. Just print the values in the required order.
The leaf nodes must be printed in a left to right order.



1. You can assume that all the meetings will happen on the same day.
2. Also, as soon as a meeting gets over if some other meeting is scheduled to start at that moment, they can then be allocated that room.
Try to solve the problem in linear time complexity.
Consider there are three meetings scheduled with timings:
1pm - 4pm
3pm - 5pm
4pm - 6pm
At the start of time, meeting 1 will be allotted room 1, which will be occupied till 4 pm hence for meeting 2 we’ll have to provide another room. At 4 pm, meeting 3 can be organized in room 1 because by that time, meeting 1 would have ended. Hence we’ll require two rooms for holding all three meetings.

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?