We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03d3327 commit aa57bc1Copy full SHA for aa57bc1
Trees/BinarySearchTree.py
@@ -47,7 +47,7 @@ def minValueNode(self, node):
47
def delete(self, data):
48
''' For deleting the node '''
49
if self is None:
50
- return root
+ return None
51
52
# if current node's data is less than that of root node, then only search in left subtree else right subtree
53
if data < self.data:
0 commit comments