-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsplit-linked-list-in-parts.py
43 lines (30 loc) · 1.03 KB
/
split-linked-list-in-parts.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
from __future__ import annotations
from dataclasses import dataclass
from typing import List, Optional
@dataclass
class ListNode:
val: int
next: Optional[ListNode] = None
class Solution:
def splitListToParts(
self, head: Optional[ListNode], k: int
) -> List[Optional[ListNode]]:
def get_length(node: Optional[ListNode]) -> int:
return get_length(node.next) + 1 if node else 0
length: int = get_length(head)
result: List[Optional[ListNode]] = [None] * k
part_length = length // k
extra = length % k
node = head
for part in range(k):
result[part] = node
prev = node
for _ in range(part_length + (1 if extra > 0 else 0)):
# `node.next` is guaranteed to exist by the length calculations
# above
prev, node = node, node.next # type: ignore
if extra > 0:
extra -= 1
if prev:
prev.next = None
return result