- or download this
...
my @flipped_hash = reverse sort {$a->[0] <=> $b->[0] } flippout %bdry
+;
...
- or download this
...
for my $k ( @flipped_hash ) {
print " \$bdry{$k->[1]}{$k->[2]} = $k->[0];\n",
}
...
- or download this
$bdry{1}{2} = 3;
$bdry{3}{4} = 2;
$bdry{2}{3} = 1;
- or download this
...
sub flippout {
...
return @f
}
...