Help for this page

Select Code to Download


  1. or download this
    $sequence1 = [ qw( a b     ) ];
    $sequence2 = [ qw(    b  c ) ]; 
    ...
      'ab_',
      '_bc',
    ];
    
  2. or download this
    sub lcs_greedy {
      my $self = shift;
    ...
    return \@L;
    }