添加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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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