Skip to content

Commit 3d0d8a2

Browse files
authored
Update rotate-array.py
1 parent d2872d2 commit 3d0d8a2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: Python/rotate-array.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,8 @@ def apply_cycle_permutation(self, k, offset, cycle_len, nums):
6060
nums[(offset + i * k) % len(nums)], tmp = tmp, nums[(offset + i * k) % len(nums)]
6161
nums[offset] = tmp
6262

63-
class Solution3:
63+
64+
class Solution3:
6465
"""
6566
:type nums: List[int]
6667
:type k: int

0 commit comments

Comments
 (0)