Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    
    push @{$hash{$array1[$_]}}, $array2[$_] for 0 .. $#array1;
    print "$_: @{$hash{$_}}\n" for sort keys %hash;
    
  2. or download this
    H1: 23 63 22
    H2: 42 33 33
    H3: 34 66 49