Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion searches/linear_search.py
Original file line numberDiff line numberDiff line change
Expand Up@@ -43,7 +43,7 @@ def linear_search(sequence, target):


if __name__ == '__main__':
user_input = raw_input('Enter numbers separated by coma:\n').strip()
user_input = raw_input('Enter numbers separated by comma:\n').strip()
sequence = [int(item) for item in user_input.split(',')]

target_input = raw_input('Enter a single number to be found in the list:\n')
Expand Down