Skip to content

Commit 4834642

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

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

sorts/bead_sort.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ def bead_sort(sequence: list) -> list:
3939
sequence[i + 1] += rod_upper - rod_lower
4040
return sequence
4141

42+
4243
if __name__ == "__main__":
4344
assert bead_sort([5, 4, 3, 2, 1]) == [1, 2, 3, 4, 5]
4445
assert bead_sort([7, 9, 4, 3, 5]) == [3, 4, 5, 7, 9]

0 commit comments

Comments
 (0)