Help for this page

Select Code to Download


  1. or download this
    my %index;
    my $line=0;
    ...
      push @{$index{$location}},[$time,$line];
      $line++;
    }
    
  2. or download this
    for my $location (keys %index) {
      my @sorted = sort { $a->[0] <=> $b->[0]}
    ...
        print $line,"\n";
      }
    }