Skip to content

Commit 10b582b

Browse files
authored
Update binary_search_exercise.md
##
1 parent 7d353b8 commit 10b582b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

algorithms/1_BinarySearch/binary_search_exercise.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
### Binary Search Exercise
1+
##### Binary Search Exercise
22
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?
33

44
```numbers = [1,4,6,9,10,5,7]```
@@ -11,4 +11,4 @@
1111
```
1212
This should return 5,6,7 as indices containing number 15 in the array
1313
14-
[Solution](https://github.com/codebasics/data-structures-algorithms-python/blob/master/algorithms/1_BinarySearch/binary_search_exercise_solution.py)
14+
[Solution](https://github.com/codebasics/data-structures-algorithms-python/blob/master/algorithms/1_BinarySearch/binary_search_exercise_solution.py)

0 commit comments

Comments
 (0)