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