Skip to content

Commit 413f4f9

Browse files
CaedenPHcclauss
andauthored
Update data_structures/binary_tree/binary_tree_node_sum.py
Co-authored-by: Christian Clauss <[email protected]>
1 parent 6d50bed commit 413f4f9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

data_structures/binary_tree/binary_tree_node_sum.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@
1414

1515
class Node:
1616
"""
17-
A Node has value variable and pointers
18-
to Nodes to its left and right.
17+
A Node has a value variable and pointers to Nodes to its left and right.
1918
"""
2019

2120
def __init__(self, value: int) -> None:

0 commit comments

Comments
 (0)