Skip to content

Commit e793352

Browse files
committed
add end line
1 parent 457b394 commit e793352

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,3 @@ def maxDepth(self, root: Optional[TreeNode]) -> int:
99
right = self.maxDepth(root.right)
1010

1111
return 1 + max(left, right)
12-

0 commit comments

Comments
 (0)