in reply to removing x from a list

People are working too hard on this!

Suppose you don't want your array to have undef elements:

@array = grep {defined $_} @array;
Put more complex tests in as desired...