Update 0226.翻转二叉树.md

This commit is contained in:
QuinnDK
2021-05-13 18:38:46 +08:00
committed by GitHub
parent bff058e3c0
commit 713bde5492

View File

@ -207,7 +207,7 @@ Java
Python Python
Go
```Go ```Go
func invertTree(root *TreeNode) *TreeNode { func invertTree(root *TreeNode) *TreeNode {
if root ==nil{ if root ==nil{