Tip 1 : Try to focus on problem solving skills.
Tip 2 : be good at low-level designing and structuring classes.
Tip 1 : Resume must have relevant skills needed for the job.
Tip 2 : Must have some previous company experience.
This Round purely on Data Structures and Algorithms



The given linked list is 1 -> 2 -> 3 -> 4-> NULL. Then the reverse linked list is 4 -> 3 -> 2 -> 1 -> NULL and the head of the reversed linked list will be 4.
Can you solve this problem in O(N) time and O(1) space complexity?



Let the array = [ 4, 2, 1, 5, 3 ]
Let pivot to be the rightmost number.

This Round basically checks your problem solving approach




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?