Tip 1 : Be Consistent.
Tip 2 : Believe in Yourself.
Tip 3 : Participate honestly in contests on Leetcode/Codeforces/Codechef to improve speed and accuracy.
Tip 1 : Don't put false things.
Tip 2 : Create job specific Resumes and projects related to role you are applying for.



Can you solve each query in O(logN) ?
Used Binary search and modified it a bit as per problem to get the desired result.
Which of the following sorting algorithms can be used to sort a random linked list with minimum time complexity? A) Insertion Sort B) Quick Sort C) Heap Sort D) Merge Sort Linked List
Know in detail about different types of sorting algos.
1-1 Video call in which I was asked to solve 1 coding problem , then DSA discussion and then OOPS concepts.



Used unordered_map for keeping a count of frequencies and solved accordingly.
Discuss about BFS vs DFS in detail?
Explain BFS and its implementation structure and uses.
Then Explain about DFS.
In depth discussion of DSA+OOPS+DBMS along with a coding question.



Input : 1 -> 2 -> 3 -> 4 -> 'NULL' and 'K' = 2
Output: 1 -> 2 -> 4 -> 'NULL'
Explanation:
After removing the second node from the end, the linked list become 1 -> 2 -> 4 -> 'NULL'.

Used Two-Pointer approach to solve it.
Discuss about Preorder , inorder and post order traversal in tree?
Step wise explain all 3 techniques with help of an example.

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