Help for this page

Select Code to Download


  1. or download this
    local $_ = $string;
    my $total;
    ...
    }
    my $other = length($_) - $total;
    print "Other: $other\n";
    
  2. or download this
    local $_ = $string;
    local %count;
    s/([ACGT])/$count{$1}++;$1/ge;