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 fd80bf3 commit 84e235bCopy full SHA for 84e235b
sorts/bubble_sort.py
@@ -85,7 +85,7 @@ def bubble_sort_recursive(collection: list[Any]) -> list[Any]:
85
[1.1, 2.2, 3.3, 4.4, 5.5, 6.6, 7.7]
86
>>> bubble_sort_recursive([1, 3.3, 5, 7.7, 2, 4.4, 6])
87
[1, 2, 3.3, 4.4, 5, 6, 7.7]
88
- >>> bubble_sort_recursive(['a', 'Z','B', 'C', 'A', 'c'])
+ >>> bubble_sort_recursive(['a', 'Z', 'B', 'C', 'A', 'c'])
89
['A', 'B', 'C', 'Z', 'a', 'c']
90
>>> import random
91
>>> collection_arg = random.sample(range(-50, 50), 100)
0 commit comments