Skip to content

Instantly share code, notes, and snippets.

@nleiva
Last active March 14, 2018 16:19
Show Gist options
  • Save nleiva/aa12dc62cc1e701c694add310af3aa52 to your computer and use it in GitHub Desktop.
Save nleiva/aa12dc62cc1e701c694add310af3aa52 to your computer and use it in GitHub Desktop.
func maxDepth(root *TreeNode) int {
if root == nil {
return 0
}
d := 1 + max(maxDepth(root.Right), maxDepth(root.Left))
return d
}
func max(a, b int) int {
if a > b {
return a
}
return b
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment