All problems
MediumAlgorithms
Binary search
Implement binary search — return index of target in a sorted list, or -1.
- #search
- #algorithms
Sample input
[1,3,5,7,9,11], 7
Sample output
3
binary-search.py
Output
Press "Run code" to execute.
Loading…
Implement binary search — return index of target in a sorted list, or -1.
[1,3,5,7,9,11], 7
3
Press "Run code" to execute.