Skip to main content
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)}