添加559.n叉树的最大深度Go版本.md

添加559.n叉树的最大深度Go版本.md
This commit is contained in:
Galaxies2580
2022-08-15 10:25:03 +08:00
committed by GitHub
parent f59621fdc5
commit c50085df84

View File

@ -16,7 +16,7 @@ func maxDepth(root *Node) int {
}
depth++
}
return depth
return depth
}
```