Skip to content

Commit 06d7361

Browse files
nishant-inglecclauss
authored andcommitted
Added comment (TheAlgorithms#1294)
1 parent 22bd6ff commit 06d7361

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

data_structures/binary_tree/binary_search_tree.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ class BinarySearchTree:
4040
def __init__(self):
4141
self.root = None
4242

43+
# Insert a new node in Binary Search Tree with value label
4344
def insert(self, label):
4445
# Create a new Node
4546
new_node = Node(label, None)

0 commit comments

Comments
 (0)