Tip 1 : Try to practice more easy/medium-level problems from online coding platforms
Tip 2 : Focus more on different ways to approach the same problems, which will help in the future.
Tip 1 : Don't just add about your projects, but also what outstanding you have done in that project.
Tip 2 : Try to add performance metrics.
Coding test with 3 easy questions need to be solved in 90 mins.
Don't remember exact questions.



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?



If the given 'ARR' is [1, 4, 1, 4, 3, 2, 3, 0]. Then {1, 4, 1, 4}, {3, 2, 3}, {3, 0}, {0} are some of the switching subarrays. But {1, 4, 3}, {1, 4, 1, 4, 3, 2, 3} are not.






If the input tree is as depicted in the picture:
The Left View of the tree will be: 2 35 2
I solved it in one go.



Fost and slow pointer
Design chess board.
Tip 1 : Try to decouple system into class as much as possible.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?