Help for this page

Select Code to Download


  1. or download this
    my @not_coin = grep { $_ ne 'coin' } @array;
    
  2. or download this
    my @not_coin = map { $_ eq 'coin' ? undef : $_ } @array;