Skip to content

Commit 4b09028

Browse files
committed
FIX : lint error
1 parent e2b38da commit 4b09028

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

maximum-depth-of-binary-tree/sungjinwi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ class Solution:
2626
def maxDepth(self, root: Optional[TreeNode]) -> int:
2727
if not root:
2828
return 0
29-
return max(self.maxDepth(root.left), self.maxDepth(root.right)) + 1
29+
return max(self.maxDepth(root.left), self.maxDepth(root.right)) + 1

0 commit comments

Comments
 (0)