Help for this page

Select Code to Download


  1. or download this
    AABBC
    BAABC
    AABBD
    AACBB
    
  2. or download this
          A        B      C       D
    1    0.75    0.25    0.00    0.00
    ...
    3    0.25    0.50    0.25    0.00
    4    0.00    1.00    0.00    0.00
    5    0.00    0.25    0.50    0.25
    
  3. or download this
    foreach my $segment (@collection) {
        foreach $i (0..length($segment)) {
            if (substr($segment,$i,1) eq "A") {
    ...
            }
        }
    }