fixed spelling of coma to comma

This commit is contained in:
Sarbajit Saha 2017-10-15 21:25:54 +05:30
parent 4c9efeacb8
commit d70b9268fe

View File

@ -144,7 +144,7 @@ if __name__ == '__main__':
else:
input_function = input
user_input = input_function('Enter numbers separated by coma:\n')
user_input = input_function('Enter numbers separated by comma:\n')
collection = [int(item) for item in user_input.split(',')]
try:
__assert_sorted(collection)