Skip to content

Commit dbe827d

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 1a24f39 commit dbe827d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

sorts/bubble_sort.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33

44
T = TypeVar("T", int, float, str) # comparable types
5+
6+
57
def bubble_sort_iterative(collection: list[T]) -> list[T]:
68
"""Pure implementation of bubble sort algorithm in Python
79

0 commit comments

Comments
 (0)