Help for this page

Select Code to Download


  1. or download this
    @hash2{ 0 .. (keys %hash)-1 } = map { $hash{$_} } sort {$a <=> $b} key
    +s %hash;
    
  2. or download this
    @hash2{ 0 .. (keys %hash)-1 } = @hash{ sort { $a <=> $b } keys %hash }
    +;