-
-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy path2181-merge-nodes-in-between-zeros.py
More file actions
36 lines (30 loc) · 949 Bytes
/
2181-merge-nodes-in-between-zeros.py
File metadata and controls
36 lines (30 loc) · 949 Bytes
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
# time complexity: O(n)
# space complexity: O(1)
from typing import Optional
class ListNode:
def __init__(self, val=0, next=None):
self.val = val
self.next = next
class Solution:
def mergeNodes(self, head: Optional[ListNode]) -> Optional[ListNode]:
reader = head.next
writer = head
while reader:
if reader.val:
writer.val += reader.val
elif reader.next:
writer = writer.next
writer.val = 0
else:
writer.next = None
reader = reader.next
return head
root = ListNode(0)
root.next = ListNode(3)
root.next.next = ListNode(1)
root.next.next.next = ListNode(0)
root.next.next.next.next = ListNode(4)
root.next.next.next.next.next = ListNode(5)
root.next.next.next.next.next.next = ListNode(2)
root.next.next.next.next.next.next.next = ListNode(0)
print(Solution().mergeNodes(root))