All prompts are owned by LeetCode. To view the prompt, click the title link above.
First completed : September 24, 2024
Last updated : September 24, 2024
Related Topics : Tree, Depth-First Search, Breadth-First Search
Acceptance Rate : 72.6 %
"""
# Definition for a Node.
class Node:
def __init__(self, val: Optional[int] = None, children: Optional[List['Node']] = None):
self.val = val
self.children = children
"""
class Solution:
def maxDepth(self, root: 'Node') -> int:
if not root :
return 0
if not root.children :
return 1
return max(self.maxDepth(x) for x in root.children) + 1