Merge pull request #109 from tntC4stl3/problem226

修复226题单元测试的问题
This commit is contained in:
halfrost
2021-04-07 08:31:20 +08:00
committed by GitHub

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")
}