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 d175c80 commit 99c7347Copy full SHA for 99c7347
Maximun_Depth_of_Binary_Tree.cc renamed to Maximum_Depth_of_Binary_Tree.cc
@@ -17,4 +17,4 @@ class Solution {
17
}
18
return max(maxDepth(root->left), maxDepth(root->right)) + 1;
19
20
-};
+};
0 commit comments