Skip to content

Commit f1c3bfe

Browse files
rajansh87cclauss
andauthored
Update data_structures/binary_tree/binary_tree_traversals.py
Co-authored-by: Christian Clauss <[email protected]>
1 parent ef6871e commit f1c3bfe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data_structures/binary_tree/binary_tree_traversals.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def preorder(root):
2525
then its left subtree followed
2626
by right subtree.
2727
preorder(make_tree())
28-
1 2 4 5 3
28+
1 2 4 5 3
2929
"""
3030
if root:
3131
print(root.data, end=" ")

0 commit comments

Comments
 (0)