Skip to content

Commit 29a2a0d

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 905626d commit 29a2a0d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

maths/binary_search_iterative.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
Space Complexity: O(1)
55
"""
66

7+
78
def binary_search(arr, target):
89
left, right = 0, len(arr) - 1
910

0 commit comments

Comments
 (0)