Skip to content

Commit eb7d9aa

Browse files
authored
CHORE: add newline
1 parent 9faf96b commit eb7d9aa

File tree

1 file changed

+1
-1
lines changed
  • lowest-common-ancestor-of-a-binary-search-tree

1 file changed

+1
-1
lines changed

lowest-common-ancestor-of-a-binary-search-tree/aa601.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ def lowestCommonAncestor(self, root: 'TreeNode', p: 'TreeNode', q: 'TreeNode') -
1919
elif p.val > root.val and q.val > root.val:
2020
root = root.right
2121
else:
22-
return root
22+
return root

0 commit comments

Comments
 (0)