MCPcopy Create free account
hub / github.com/bslatkin/effectivepython / BinaryTree

Class BinaryTree

example_code/item_054.py:75–79  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

73
74print("Example 2")
75class BinaryTree(ToDictMixin):
76 def __init__(self, value, left=None, right=None):
77 self.value = value
78 self.left = left
79 self.right = right
80
81
82print("Example 3")

Callers 1

item_054.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected