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

Commit 0ac731c

Browse files
committed
222 增加测试用例
1 parent 379e959 commit 0ac731c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Algorithms/0222.count-complete-tree-nodes/count-complete-tree-nodes_test.go

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ var questions = []struct {
1010
pre, in []int
1111
count int
1212
}{
13+
{
14+
[]int{},
15+
[]int{},
16+
0,
17+
},
18+
1319
{
1420
[]int{1, 2, 4, 5, 3, 6},
1521
[]int{4, 2, 5, 1, 6, 3},

0 commit comments

Comments
 (0)