We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49419ed commit d072d82Copy full SHA for d072d82
104-maximum-depth-of-binary-treemaximum-depth-of-binary-tree.py renamed to 104-maximum-depth-of-binary-tree.py
@@ -26,4 +26,4 @@ class Solution(object):
26
def maxDepth(self, root):
27
if root == None:
28
return 0
29
- return 1 + max(self.maxDepth(root.left), self.maxDepth(root.right))
+ return 1 + max(self.maxDepth(root.left), self.maxDepth(root.right))
0 commit comments