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 4a8df0e commit 8b3ca33Copy full SHA for 8b3ca33
maximum-depth-of-binary-tree/YeomChaeeun.ts
@@ -29,4 +29,4 @@ function maxDepth(root: TreeNode | null): number {
29
if (node.right) stack.push([node.right, depth + 1]);
30
}
31
return max
32
-}
+}
0 commit comments