Skip to content

Commit 84e235b

Browse files
Update bubble_sort.py
1 parent fd80bf3 commit 84e235b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sorts/bubble_sort.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def bubble_sort_recursive(collection: list[Any]) -> list[Any]:
8585
[1.1, 2.2, 3.3, 4.4, 5.5, 6.6, 7.7]
8686
>>> bubble_sort_recursive([1, 3.3, 5, 7.7, 2, 4.4, 6])
8787
[1, 2, 3.3, 4.4, 5, 6, 7.7]
88-
>>> bubble_sort_recursive(['a', 'Z','B', 'C', 'A', 'c'])
88+
>>> bubble_sort_recursive(['a', 'Z', 'B', 'C', 'A', 'c'])
8989
['A', 'B', 'C', 'Z', 'a', 'c']
9090
>>> import random
9191
>>> collection_arg = random.sample(range(-50, 50), 100)

0 commit comments

Comments
 (0)