-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path23.py
38 lines (32 loc) · 1.11 KB
/
23.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
# https://neetcode.io/problems/merge-k-sorted-linked-lists
# https://leetcode.com/problems/merge-k-sorted-lists/
# Definition for singly-linked list.
class ListNode:
def __init__(self, val=0, next=None):
self.val = val
self.next = next
from typing import List, Optional
class Solution:
def mergeKLists(self, lists: List[Optional[ListNode]]) -> Optional[ListNode]:
return self.mergeSort(lists, 0, len(lists) - 1)
def mergeSort(self, lists, l, r) -> Optional[ListNode]:
if l > r:
return None
if l == r:
return lists[l]
m = (l + r) // 2
leftPartition = self.mergeSort(lists, l, m)
rightPartition = self.mergeSort(lists, m + 1, r)
return self.merge(leftPartition, rightPartition)
def merge(self, l1, l2) -> Optional[ListNode]:
res = c = ListNode()
while l1 and l2:
if l1.val < l2.val:
c.next = l1
l1 = l1.next
else:
c.next = l2
l2 = l2.next
c = c.next
c.next = l1 or l2
return res.next