Tip 1 : Participate in live contests on websites like Codechef, Codeforces, etc as much as possible.
Tip 2 : Practice previous interview questions from LeetCode, CodeStudio.
Tip 3 : Revise Computer Science subjects like DBMS, OOPS thoroughly.
Tip 1 : Have some projects on resume.
Tip 2 : Do not put false things on resume.



Can you solve each query in O(logN) ?
Used Binary search and modified it a bit as per problem to get the desired result.



Given a string input of length n, find the length of the longest substring without repeating characters i.e return a substring that does not have any repeating characters.



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'.

You have been given a singly Linked List of 'N' nodes with integer data and an integer 'K'. Your task is to remove the Kth node from the end of the given Linked List.
Discuss about Preorder , inorder and post order traversal in tree iterative process.

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