Skip to content

Commit 539cf24

Browse files
authored
Update Exercise-20-Element-Search.py
1 parent 6fb871c commit 539cf24

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Exercise-20-Element-Search.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def search_in_binary(number_list, start, end, query):
4040
query -- a element.
4141
4242
Returns:
43-
True/False -- if query in number_list return True, else return False
43+
True/False -- if query in number_list return True, else return False############
4444
"""
4545
if start > end:
4646
return False

0 commit comments

Comments
 (0)