104. Maximum Depth of Binary Tree

Posted on Dec 31, 2024

Solution

Implementation

class Solution {
    fun maxDepth(root: TreeNode?): Int {
        if (root == null) return 0
        return 1 + max(maxDepth(root.left), maxDepth(root.right))
    }
}