Skip to content

Commit f030c60

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

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

sorts/tim_sort.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ def binary_search(lst: list[Any], item: Any, start: int, end: int) -> int:
2121

2222

2323
def insertion_sort(lst: list[Any]) -> list[Any]:
24-
2524
"""
2625
Sort a list using insertion sort and binary search
2726
"""
@@ -36,7 +35,6 @@ def insertion_sort(lst: list[Any]) -> list[Any]:
3635

3736

3837
def merge(left: list[Any], right: list[Any]) -> list[Any]:
39-
4038
"""
4139
Merge two sorted lists into one sorted list
4240
"""

0 commit comments

Comments
 (0)