Help for this page

Select Code to Download


  1. or download this
    sort modtype_2430.srt |uniq -c
    
  2. or download this
    my @sorted = sort @array;
    my $last = shift @sorted;
    ...
      }
    }
    print "$count\t$last\n";
    
  3. or download this
    my %count;
    foreach my $e (@array)
    ...
    {
      print "$count\t$e\n";
    }