Skip to content

Commit abcaf13

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

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

sorts/gnome_sort.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ def gnome_sort(lst: list) -> list:
5252

5353
if __name__ == "__main__":
5454
import doctest
55-
55+
5656
doctest.testmod()
57-
57+
5858
user_input = input("Enter numbers separated by a comma:\n").strip()
5959
unsorted = [int(item) for item in user_input.split(",")]
6060
print(gnome_sort(unsorted))

sorts/tim_sort.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,5 +128,5 @@ def main():
128128
import doctest
129129

130130
doctest.testmod()
131-
131+
132132
main()

0 commit comments

Comments
 (0)