Tip 1 : Try to give each and every question there on leetcode and try to upsolve them as well.
Tip 2 : quality matters but quantity also matters, so try to solve as many questions as you can.
Tip 1 : you should have at least 2 projects done completely by yourself so that you can handle any query asked by interviewer.
Tip 2 : try to mention all your achievements related to competitive programming.
so basically this was the online round just to check the coding skills of the candidate and all the candidates were called to the computer labs to appear for the interview.



[1, 2, 3, 4] is a strictly increasing array, while [2, 1, 4, 3] is not.



The left half of the array must be the smallest possible.
If there is no partition return the size of the array.
You are given, ‘arr’ = [8, 3, 1, 4, 9, 10], this array can be partitioned at index ‘3’ so the left array is [8, 3, 1, 4] and the right array is [9, 10]. Hence the answer is 4.
So i was shared with a link where i have to join and this was video call round.






For the given binary tree:

The Inorder traversal will be [5, 3, 2, 1, 7, 4, 6].

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?