diff --git a/algorithms/1_BinarySearch/binary_search_exercise.md b/algorithms/1_BinarySearch/binary_search_exercise.md index fea2b2b..7da2eba 100644 --- a/algorithms/1_BinarySearch/binary_search_exercise.md +++ b/algorithms/1_BinarySearch/binary_search_exercise.md @@ -1,4 +1,4 @@ -### Binary Search Exercise +##### bs Exercise 1. When I try to find number 5 in below list using binary search, it doesn't work and returns me -1 index. Why is that? ```numbers = [1,4,6,9,10,5,7]``` @@ -11,4 +11,4 @@ ``` This should return 5,6,7 as indices containing number 15 in the array -[Solution](https://github.com/codebasics/data-structures-algorithms-python/blob/master/algorithms/1_BinarySearch/binary_search_exercise_solution.py) \ No newline at end of file +[Solution](https://github.com/codebasics/data-structures-algorithms-python/blob/master/algorithms/1_BinarySearch/binary_search_exercise_solution.py)