Skip to content

Commit 81fd398

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 00687bd commit 81fd398

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data_structures/arrays/reverse_array.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,4 @@ def reverse_array(arr: list[Any]) -> list[Any]:
6060
sample_array = [10, 20, 30, 40, 50, 60]
6161
print(f"Original array: {sample_array}")
6262
reverse_array(sample_array)
63-
print(f"Reversed array: {sample_array}")
63+
print(f"Reversed array: {sample_array}")

0 commit comments

Comments
 (0)