diff --git a/data-structures/binary-tree/bst.go b/data-structures/binary-tree/bst.go index da1aa35..b14ee46 100644 --- a/data-structures/binary-tree/bst.go +++ b/data-structures/binary-tree/bst.go @@ -133,7 +133,7 @@ func (t *Tree) Delete(i int) bool { return true } - if parent.Left == n { + if parent.Left == h { parent.Left = nil } else { parent.Right = nil