hacktoberfest-2022-algo-projects icon indicating copy to clipboard operation
hacktoberfest-2022-algo-projects copied to clipboard

ADDED Python binary search #71

Open serverf21 opened this issue 2 years ago • 0 comments

What?

Added the code for Binary Search in Python

Solves #71

Tested and verified the code with all corner cases in local system.

Steps -

  1. Input any sorted array
  2. Try searching for a value
  3. The code will output the index of that value in sorted array Time Complexity - O(log(n))

serverf21 avatar Nov 01 '23 14:11 serverf21