mirror of
https://github.com/autistic-symposium/master-algorithms-py.git
synced 2025-07-23 15:00:51 -04:00
Update README.md
This commit is contained in:
parent
2f8af300a6
commit
240d008647
1 changed files with 1 additions and 1 deletions
|
@ -218,7 +218,7 @@ class BSTree():
|
||||||
root = root.right
|
root = root.right
|
||||||
return root.value
|
return root.value
|
||||||
|
|
||||||
def delete(self, root, key) -> TreeNode:
|
def delete(self, root, key) -> Node:
|
||||||
if not root:
|
if not root:
|
||||||
return None
|
return None
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue