Skip to content

Commit cec7a82

Browse files
committed
[:fixed] linelint
1 parent c376f77 commit cec7a82

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

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

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ def maxDepth(self, root: Optional[TreeNode]) -> int:
1919
stack.append((node.right, depth+1))
2020
return max_depth
2121

22+
23+
24+
2225
# another way : Down-top : recursive
2326
# class Solution:
2427
# def maxDepth(self, root: Optional[TreeNode]) -> int:
@@ -31,8 +34,3 @@ def maxDepth(self, root: Optional[TreeNode]) -> int:
3134

3235

3336

34-
35-
36-
37-
38-

0 commit comments

Comments
 (0)