Fix problem 226 test case

This commit is contained in:
tntC4stl3
2021-04-06 23:35:10 +08:00
parent a6ee37ebef
commit a15f91f029

View File

@ -50,7 +50,7 @@ func Test_Problem226(t *testing.T) {
_, p := q.ans226, q.para226
fmt.Printf("【input】:%v ", p)
root := structures.Ints2TreeNode(p.one)
fmt.Printf("【output】:%v \n", structures.Tree2Preorder(invertTree(root)))
fmt.Printf("【output】:%v \n", structures.Tree2ints(invertTree(root)))
}
fmt.Printf("\n\n\n")
}