Skip to content

Commit c40d00f

Browse files
committed
feat: improve 78
1 parent 34eeadd commit c40d00f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

algorithm/78.Subsets/main_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ var tcs = []struct {
1212
}{
1313
{
1414
[]int{1, 2, 3},
15-
[][]int{[]int{}, []int{1}, []int{2}, []int{1, 2}, []int{3}, []int{1, 3}, []int{2, 3}, []int{1, 2, 3}},
15+
[][]int{[]int{}, []int{1}, []int{2}, []int{2, 1}, []int{3}, []int{3, 1}, []int{3, 2}, []int{3, 2, 1}},
1616
},
1717
}
1818

0 commit comments

Comments
 (0)