Tip 1 : Complete the interviewbit Data Structures and algorithm questions
Tip 2 : Practice on leetcode, give weekly and biweekly contests on leetcode
Tip 3 : Give contests on codeforces
Tip 4 : Do projects in the field which you want to go into
Tip 1 : Have some decent projects on resume in the field you are interested in.
Tip 2 : Don't lie on your resume, you'll easily get caught.
Tip 3 : Write some extra curricular activities which you have done in your spare time.
Timing was around 8pm, the contest consisted of 3 questions(easy, medium, medium questions)



[1, 2, 3, 4] is a strictly increasing array, while [2, 1, 4, 3] is not.
Applied the LIS logic



Sorted and solved the question


1. The sizes will range from 1 to ‘N’ and will be integers.
2. The sum of the pieces cut should be equal to ‘N’.
3. Consider 1-based indexing.
Applied the standard logic
It was around 12pm



Given binary tree :

After the reversal of alternate nodes, the tree will be :

Input: 1->2->3->4->5->6
Output: 1->3->5->6->4->2
Explanation: Two lists are 1->3->5 and 2->4->6,
reverse the 2nd list: 6->4->2.
Merge the lists
Input: 12->14->16->18->20
Output: 12->16->20->18->14
Query on joining two different tables
It was around 4pm
What businesses does ola have?
Personal questions about family
Why do you want to join ola?

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?