Skip to content

Commit 889aa02

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data_structures/arrays/rotate_array.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def reverse(start: int, end: int) -> None:
5757
>>> example
5858
[3, 2, 5, 4, 1]
5959
"""
60-
60+
6161
while start < end:
6262
arr[start], arr[end] = arr[end], arr[start]
6363
start += 1

0 commit comments

Comments
 (0)