Skip to content

Commit d823ec1

Browse files
authored
Update cocktail_shaker_sort.py
1 parent 018bb9f commit d823ec1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sorts/cocktail_shaker_sort.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ def cocktail_shaker_sort(unsorted: list) -> list:
4242
doctest.testmod()
4343
user_input = input("Enter numbers separated by a comma:\n").strip()
4444
unsorted = [int(item) for item in user_input.split(",")]
45-
print(f"{cocktail_shaker_sort(unsorted)= }")
45+
print(f"{cocktail_shaker_sort(unsorted) = }")

0 commit comments

Comments
 (0)