Skip to content

Commit d81f4d0

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

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

sorts/binary_insertion_sort.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ def __lt__(self, other: object, /) -> bool: ...
1919

2020
T = TypeVar("T", bound=Comparable)
2121

22+
2223
def binary_insertion_sort(collection: list[T]) -> list[T]:
2324
"""
2425
Sorts a list using the binary insertion sort algorithm.

0 commit comments

Comments
 (0)