Help for this page

Select Code to Download


  1. or download this
    sub lcs_arrays
    {
    ...
        my ($beg, $end) = @{$matches[0]};
        return [  @{$a1}[ $beg..$end ]  ];
    }
    
  2. or download this
    sub lcs_arrays
    {
    ...
    
        return [  @{$a1}[ $beg..$end ]  ];
    }