Maximum Depth Of Binary Tree

Sneha Michelle,TreesRecursion

Problem Link

Maximum Depth of a Binary Tree (opens in a new tab)

Problem Statement


Algorithm

Code

class Solution {
    public int maxDepth(TreeNode root) {
        if (root==null){return 0;}
 
        int left = maxDepth(root.left);
        int right = maxDepth(root.right);
 
        return Math.max(left,right)+1;
    }
}