Skip to content

Commit aa57bc1

Browse files
committed
Modified BST
1 parent 03d3327 commit aa57bc1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Trees/BinarySearchTree.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def minValueNode(self, node):
4747
def delete(self, data):
4848
''' For deleting the node '''
4949
if self is None:
50-
return root
50+
return None
5151

5252
# if current node's data is less than that of root node, then only search in left subtree else right subtree
5353
if data < self.data:

0 commit comments

Comments
 (0)