You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In binary search, recursion is used to repeatedly divide a sorted array into halves until the target value is found. The algorithm compares the middle element to the target, then recursively searches either the left or right half depending on the comparison, reducing the search space efficiently.
This is a repository where I upload solved coding problems from Code Chef, Codeforces and LeetCode every day. Inside the repository, you will find the coding solutions I have implemented for various coding problems, as well as a brief explanation of my approach. The goal of this repository is to track my progress as I improve my prob-solving skill.