Help for this page

Select Code to Download


  1. or download this
    my $krow = join "\0", @row;
    $seen{$krow}++ and next;
    
  2. or download this
    my $row_as_string = join "\0", @row;
    next if $seen{$row_as_string}++;