MCPcopy Create free account
hub / github.com/careercup/ctci / BinaryTreeNode.py

File BinaryTreeNode.py

python/Chapter 4/Question4_7/BinaryTreeNode.py:None–None  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1class BinaryTreeNode:
2
3 def __init__(self, value):
4 self.value = value

Callers

nothing calls this directly

Calls 4

commonAncestorFunction · 0.85
BinarySearchTreeClass · 0.70
TreeNodeClass · 0.70
addNodeMethod · 0.45

Tested by

no test coverage detected