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 018bb9f commit d823ec1Copy full SHA for d823ec1
sorts/cocktail_shaker_sort.py
@@ -42,4 +42,4 @@ def cocktail_shaker_sort(unsorted: list) -> list:
42
doctest.testmod()
43
user_input = input("Enter numbers separated by a comma:\n").strip()
44
unsorted = [int(item) for item in user_input.split(",")]
45
- print(f"{cocktail_shaker_sort(unsorted)= }")
+ print(f"{cocktail_shaker_sort(unsorted) = }")
0 commit comments