Help for this page

Select Code to Download


  1. or download this
    my @StatsArray;
    push @{$StatsArray[$RegionNum]}, {
      AR  => $AR[$RegionNum],
      BCR => $BCR[$RegionNum],
    };
    
  2. or download this
    my %Stats;
    push @{$Stats{$RegionNum}}, {
      ...
    };
    
  3. or download this
    my @sorted = sort { $a->{AR} <=> $b->{AR} } @{ $StatsArray[$RegionNum]
    + };