Skip to content
This repository was archived by the owner on Sep 20, 2023. It is now read-only.

Commit 3c9e0b0

Browse files
committed
1171 added
1 parent 2e42fc9 commit 3c9e0b0

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

Algorithms/1171.remove-zero-sum-consecutive-nodes-from-linked-list/remove-zero-sum-consecutive-nodes-from-linked-list_test.go

+10
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,16 @@ var tcs = []struct {
1313
ans []int
1414
}{
1515

16+
{
17+
[]int{0, 1, 1, -3, 6, -3, 0, 1},
18+
[]int{1, 1, 1},
19+
},
20+
21+
{
22+
[]int{0, 1, 1, -3, 6, -3, 1},
23+
[]int{1, 1, 1},
24+
},
25+
1626
{
1727
[]int{1, 1, -3, 6, -3, 1},
1828
[]int{1, 1, 1},

0 commit comments

Comments
 (0)