mirror of
https://github.com/autistic-symposium/master-algorithms-py.git
synced 2025-04-29 12:16:14 -04:00
Update hash_set_bst.py
This commit is contained in:
parent
240d008647
commit
2861501448
@ -82,7 +82,7 @@ class BSTree():
|
||||
root = root.right
|
||||
return root.value
|
||||
|
||||
def delete(self, root, key) -> TreeNode:
|
||||
def delete(self, root, key) -> Node:
|
||||
if not root:
|
||||
return None
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user