Help for this page
my @hashes = map { {} } 0..9; $hashes[$_]{$_} = 1 for 0..9;
my @hashes = map { { $_ => 1 } } 0..9;