Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
74
print(
"Example 2"
)
75
class
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
82
print(
"Example 3"
)
Callers
1
item_054.py
File · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected