forked from UNN/2026-rff_mp
[11] A minor update that fixes errors and typos
This commit is contained in:
parent
28de33a83d
commit
0441c5076a
|
|
@ -256,6 +256,12 @@ print("====== END TEST ====== \n\n\n")
|
|||
|
||||
|
||||
|
||||
def find_min(node):
|
||||
while node['left'] is not None:
|
||||
node = node['left']
|
||||
return node
|
||||
|
||||
|
||||
def bst_delete(root,name):
|
||||
if root is None:
|
||||
return None
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user