We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef6871e commit f1c3bfeCopy full SHA for f1c3bfe
data_structures/binary_tree/binary_tree_traversals.py
@@ -25,7 +25,7 @@ def preorder(root):
25
then its left subtree followed
26
by right subtree.
27
preorder(make_tree())
28
- 1 2 4 5 3
+ 1 2 4 5 3
29
"""
30
if root:
31
print(root.data, end=" ")
0 commit comments