Help for this page

Select Code to Download


  1. or download this
    my %count = ();
    my @tableused = ();
    ...
    foreach $elem (keys %count) {
        push @tableused, $elem if $count{$elem} > 1;
    }