mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-02-25 02:18:39 +00:00
Update basic_binary_tree.py
This commit is contained in:
parent
02fe6955e5
commit
0099cd2698
@ -35,7 +35,7 @@ def display_using_in_order_traversal(root: Node | None, level: int = 0) -> None:
|
||||
>>> root = Node(1)
|
||||
>>> root.left = Node(0)
|
||||
>>> root.right = Node(2)
|
||||
>>> display_tree(root)
|
||||
>>> display_using_in_order_traversal(root)
|
||||
2
|
||||
1
|
||||
0
|
||||
|
Loading…
x
Reference in New Issue
Block a user