-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path25.py
34 lines (31 loc) · 950 Bytes
/
25.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
# https://neetcode.io/problems/reverse-nodes-in-k-group
# https://leetcode.com/problems/reverse-nodes-in-k-group/description/
# Definition for singly-linked list.
class ListNode:
def __init__(self, val=0, next=None):
self.val = val
self.next = next
from typing import Optional
class Solution:
def reverseKGroup(self, head: Optional[ListNode], k: int) -> Optional[ListNode]:
l, r = head, head
res = ListNode(next=head)
prevEnd = res
while r:
i = 1
while i < k and r.next:
r = r.next
i += 1
if i != k:
break
nextStart = r.next
p, c = nextStart, l
while c != nextStart:
n = c.next
c.next = p
p = c
c = n
prevEnd.next = r
prevEnd = l
l = r = nextStart
return res.next