Help for this page

Select Code to Download


  1. or download this
    sub partition {
        my( $limit, $aRef ) = @_;
    ...
        my %seen; $seen{ $_ }++ for @best;
        return \@best, [ grep{ --$seen{ $_ } < 0 } @$aRef ];
    }