Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/ndleah/python-mini-project
/ Node
Class
Node
Binary_tree/node.py:4–8 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
2
# Class of the nodes
3
4
class
Node:
5
def
__init__(self, data):
6
self.left = None
7
self.right = None
8
self.data = data
9
Callers
2
add
Method · 0.90
_add
Method · 0.90
Calls
no outgoing calls
Tested by
no test coverage detected