Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Go to Latest
File
package maximum_depth_of_binary_tree
func Max(a, b int) int { return max(a, b)}func MaxDepth(root *TreeNode) int { return maxDepth(root)}