Skip to content

Commit d35bb68

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sorts/bozo_sort.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def bozo_sort(array: list) -> list:
2727
>>> bozo_sort([8, 16, 0, 4, 10])
2828
[0, 4, 8, 10, 16]
2929
"""
30-
30+
3131
def is_sorted(array: list) -> bool:
3232
for i, n in enumerate(array):
3333
if i < len(array) - 1 and n > array[i + 1]:

0 commit comments

Comments
 (0)