Help for this page

Select Code to Download


  1. or download this
    my @array = map {int rand 1e6} 1..400000;
    ...
    $lookup_table{$_}++ for @array;
    
  2. or download this
    my %lookup_table = map {int rand 1e6 => 1} 1..400000;