MCPcopy 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
4class Node:
5 def __init__(self, data):
6 self.left = None
7 self.right = None
8 self.data = data
9

Callers 2

addMethod · 0.90
_addMethod · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected