Essential_Coding_Questions_Basic_to_Advanced
Essential_Coding_Questions_Basic_to_Advanced
Basic Questions
117. Calculate the area of a rectangle given its length and breadth.
Intermediate Questions
1. Reverse an array.
2. Find the maximum and minimum number in an array.
46. Find the nth node from the end in a linked list.
Advanced Questions
53. Find the lowest common ancestor of two nodes in a binary tree.
54. Implement a binary search tree (BST).
76. Find all pairs in an array whose sum equals a given number.
137. Count the total number of set bits in all integers from 1 to n.
148. Find the length of the shortest path between two nodes in an unweighted graph.
151. Solve the Maximum Flow problem using the Ford-Fulkerson algorithm.
154. Find the smallest window in a string containing all characters of another string.
163. Find all paths from the root to a leaf in a binary tree.
172. Find the number of ways to climb stairs with variable steps.
177. Solve the Range Sum Query problem using Fenwick Tree.
183. Find the minimum number of jumps to reach the end of an array.