We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c9efea commit d70b926Copy full SHA for d70b926
searches/binary_search.py
@@ -144,7 +144,7 @@ def __assert_sorted(collection):
144
else:
145
input_function = input
146
147
- user_input = input_function('Enter numbers separated by coma:\n')
+ user_input = input_function('Enter numbers separated by comma:\n')
148
collection = [int(item) for item in user_input.split(',')]
149
try:
150
__assert_sorted(collection)
0 commit comments