-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathm1171.py
37 lines (30 loc) · 1.37 KB
/
m1171.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
# Definition for singly-linked list.
# class ListNode:
# def __init__(self, val=0, next=None):
# self.val = val
# self.next = next
class Solution:
def removeZeroSumSublists(self, head: Optional[ListNode]) -> Optional[ListNode]:
if not head :
return None
if not head.val :
return self.removeZeroSumSublists(head.next)
runningSums = {head.val: head, 0: None} # key=sum val=previousNode
pevSum = head.val
current = head.next
while current :
if not current.val :
runningSums.get(pevSum).next = current.next
return self.removeZeroSumSublists(head)
runningSum = current.val + pevSum
# Repeat sum found
if runningSum in runningSums : # current = node right after the sequence
previousNode = runningSums.get(runningSum) # node before the node that starts the sequence
if not previousNode : # the starting point is the head
return self.removeZeroSumSublists(current.next)
previousNode.next = current.next
return self.removeZeroSumSublists(head)
runningSums[runningSum] = current
current = current.next
pevSum = runningSum
return head