-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathm61.py
43 lines (34 loc) · 1.07 KB
/
m61.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Definition for singly-linked list.
# class ListNode:
# def __init__(self, val=0, next=None):
# self.val = val
# self.next = next
class Solution:
def rotateRight(self, head: Optional[ListNode], k: int) -> Optional[ListNode]:
if not head :
return None
# Since worst case 500 nodes but k can be much larger
curr = head
listLength = 0
while curr :
listLength += 1
curr = curr.next
k %= listLength
# If rotations are redundant
if k == 0 :
return head
# find k-th node from end
beforeKth = None
kthFromEnd = head
for _ in range(listLength - k) :
beforeKth = kthFromEnd
kthFromEnd = kthFromEnd.next
# kth from end is new head
newHead = kthFromEnd
beforeKth.next = None # New end must not cycle
end = kthFromEnd
# Link end to original head
while end.next :
end = end.next
end.next = head
return newHead