Tip 1 : Practice algorithms on a daily basis, do hacker rank leet code etc..
Tip 2 : Going through system design youtube videos helped. I have seen a lot of gaurav sen videos
Tip 3 : Learning about Coding patterns like factory, strategy pattern helps a lot in LLD
Tip 1 : Projects
Tip 2 : Tech you know and you have worked with



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?



nodes, where the nodes have integer values.
For the given binary tree:

The Inorder traversal will be [5, 3, 2, 1, 7, 4, 6].
The Preorder traversal will be [1, 3, 5, 2, 4, 7, 6].
The Postorder traversal will be [5, 2, 3, 7, 6, 4, 1].
Explanation of how web works and few concepts in JS.
What is indexing?
CTC, why are you switching job when you are just 3 months in the current job etc..

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?