Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    print "p: @p\n";
    print "q: @q\n";
    print "d: @diff\n";
    
  2. or download this
    while ($qx < @q) {
        if ( $p[$px] == $q[$qx] ) {
    ...
        }
    }
    push @diff, @p[$px .. @p-1];