Skip to content

Commit a00e45e

Browse files
authored
Update two-sum-bsts.py
1 parent cdb6650 commit a00e45e

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

Python/two-sum-bsts.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ def inorder_gen(root, asc=True):
3434
stack.append((root.left, False))
3535
stack.append((root, True))
3636
stack.append((root.right, False))
37-
3837

3938
left_gen, right_gen = inorder_gen(root1, True), inorder_gen(root2, False)
4039
left, right = next(left_gen), next(right_gen)

0 commit comments

Comments
 (0)