hacktoberfest-2022-algo-projects
hacktoberfest-2022-algo-projects copied to clipboard
ADDED Python binary search #71
What?
Added the code for Binary Search in Python
Solves #71
Tested and verified the code with all corner cases in local system.
Steps -
- Input any sorted array
- Try searching for a value
- The code will output the index of that value in sorted array Time Complexity - O(log(n))