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 2bbf8cd commit dd9f0b3Copy full SHA for dd9f0b3
searches/linear_search.py
@@ -43,7 +43,7 @@ def linear_search(sequence, target):
43
44
45
if __name__ == '__main__':
46
- user_input = raw_input('Enter numbers separated by coma:\n').strip()
+ user_input = raw_input('Enter numbers separated by comma:\n').strip()
47
sequence = [int(item) for item in user_input.split(',')]
48
49
target_input = raw_input('Enter a single number to be found in the list:\n')
0 commit comments