Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
deniscostadsc committed Jul 11, 2024
1 parent a170e87 commit 033bccd
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions solutions/beecrowd/1201/1201.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

add_space_before_number = True


def _remove_node(tree, number):
if not tree:
return tree
Expand All @@ -26,6 +27,8 @@ def _remove_node(tree, number):
else:
successor_parent.right = successor.right
return tree


class Node:
def __init__(self, number=None, left=None, right=None):
self.number = number
Expand Down

0 comments on commit 033bccd

Please sign in to comment.