Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 212 Bytes

File metadata and controls

11 lines (9 loc) · 212 Bytes

104.Maximum Depth of Binary

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