I think this'll do it for you:
splice @array, $_, 1 for sort { $b <=> $a } @indices;
The reason for the sort is that it starts dropping elements from the end of the array. If you start from the beginning, you won't drop the elements that you want to drop. Say you want to drop the elements at indices 0 and 2; you drop the element at index 0, but then the other elements squish towards the front of the array. So element 2 is now element 1. So you'll drop the wrong elements. That's why you should start from the end.

Update: tilly pointed out a bug where duplicate indices could lead to dropping incorrect elements in the array. Here's a fix:

my %u; splice @array, $_, 1 for grep !$u{$_}++, sort { $b <=> $a } @indices;
This is just getting silly in terms of the number of times we're looping over the data; but it does still seem to be quite fast. Faster than I would have expected, in fact.

In reply to Re: Removing certain elements from an array by btrott
in thread Removing certain elements from an array by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.