Leser: 22
1 2 3 4 5
my @sorted_keys = map{ $_->[0] }sort{ $b->[1] <=> $a->[1] }map{ [ $_, $hash{$_} ] }keys %hash; for my $key ( @sorted_keys ) { print $key, " -> ", $hash{$key},"\n"; }
1 2 3
my @sorted_dist = map{ $_->[0] }sort{ $b->[1] <=> $a->[1] }map{ [ $_, $noname_way{$_} ] }keys %noname_way; foreach my $key(sort keys @sorted_dist){
QuoteType of arg 1 to keys must be hash (not private array) at haiti_river_selection.pl line 125, near "@
sorted_dist)"
for my $key ( @sorted_keys ) {
foreach my $key(sort keys @sorted_dist){
1 2 3 4 5
my @sorted_keys = sort { $hash{ $b } <=> $hash{ $a } } keys %hash; for my $key ( @sorted_keys ) { print "$key -> $hash{$key}\n"; }
2010-02-08T09:18:46 pqman sollte vielleicht dazu sagen, dass man das in diesem fall nicht braucht. ob nun ein hashzugriff auf $hash{$_} oder auf $_->[1], das nimmt sch nix.
[...]