1171. Remove Zero Sum Consecutive Nodes from Linked List
Description
**Input:** head = [1,2,-3,3,1]
**Output:** [3,1]
**Note:** The answer [1,2,1] would also be accepted.**Input:** head = [1,2,3,-3,4]
**Output:** [1,2,4]**Input:** head = [1,2,3,-3,-2]
**Output:** [1]ac
Last updated