in reply to Array Element Deletion

If you'd normally usethen use
@a = grep { ... } @a@{$h{$k}} = grep { ... } @{$h{$k}}
splice(@a, ...)splice(@{$h{$k}}, ...)
etc