Help for this page

Select Code to Download


  1. or download this
     #!/usr/bin/perl -w
    for (my $x1 = 0; $x1 <= $#RAM1; $x1++) {
       for (my $y1 = 0; $y1 <= $#{$RAM1[$x1]}; $y1++) {
    ...
    
      }
    }
    
  2. or download this
    foreach $item (@pos) {
    unless ($seen{$item}) {
    ...
    push (@uniq, $item);
    }
    }