Skip to content

Commit 85eb704

Browse files
committed
Merge branch 'anuska' of https://github.com/jenyyy4/Python into anuska
2 parents 925cb2d + bd4e433 commit 85eb704

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

data_structures/arrays/rotate_array.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
from typing import List
22

3+
34
def rotate_array(arr: List[int], k: int) -> List[int]:
45
n = len(arr)
56
if n == 0:

0 commit comments

Comments
 (0)