Skip to content

Commit e1b5792

Browse files
Update bubble_sort.py
1 parent bc810e9 commit e1b5792

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

sorts/bubble_sort.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ def bubble_sort_iterative(collection: list[Any]) -> list[Any]:
88
comparable items inside
99
:return: the same collection ordered in ascending order
1010
11-
1211
Examples:
1312
>>> bubble_sort_iterative([0, 5, 2, 3, 2])
1413
[0, 2, 2, 3, 5]

0 commit comments

Comments
 (0)