We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 457b394 commit e793352Copy full SHA for e793352
maximum-depth-of-binary-tree/doh6077.py
@@ -9,4 +9,3 @@ def maxDepth(self, root: Optional[TreeNode]) -> int:
9
right = self.maxDepth(root.right)
10
11
return 1 + max(left, right)
12
-
0 commit comments