Skip to content
Please note that GitHub no longer supports your web browser.

We recommend upgrading to the latest Google Chrome or Firefox.

Learn more
Permalink
Browse files

Added comment (#1294)

  • Loading branch information...
Nishant-Ingle authored and cclauss committed Oct 7, 2019
1 parent 22bd6ff commit 06d736199b058ab80d747da242085d48a6803096
Showing with 1 addition and 0 deletions.
  1. +1 −0 data_structures/binary_tree/binary_search_tree.py
@@ -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)

0 comments on commit 06d7361

Please sign in to comment.
You can’t perform that action at this time.