Help for this page

Select Code to Download


  1. or download this
       my @seq = split(//,$string);
       my $i = 0;
    ...
          $counts{$letter}[$i]++
          $i++;
       }
    
  2. or download this
    my $i=0;
    $counts{$1}[$i++]++ while $string =~ /(.)/g;