Help for this page

Select Code to Download


  1. or download this
    foreach $month (%keys %ManagerInCharge) {
       my $month_hash = $ManagerInCharge{$month};
    ...
       my $i;
       $ManagerInCharge{$month} = { map { ++$i => $_ } @month_array };
    }
    
  2. or download this
    foreach $month (%keys %ManagerInCharge) {
       my $month_hash = $ManagerInCharge{$month};
    ...
       };
       $ManagerInCharge{$month} = \@month_array;
    }