Added comment (#1294)

This commit is contained in:
Nishant-Ingle 2019-10-07 23:59:14 +05:30 committed by Christian Clauss
parent 22bd6ff967
commit 06d736199b

View File

@ -40,6 +40,7 @@ class BinarySearchTree:
def __init__(self):
self.root = None
# Insert a new node in Binary Search Tree with value label
def insert(self, label):
# Create a new Node
new_node = Node(label, None)