in reply to Re: Length of array in hash of arrays
in thread Length of array in hash of arrays

Like this:
$ perl -e 'my %g = (k => [8, 2, 10, 2, 1, 3],l => [10, 7, 9, 0, 1]); f +oreach $keyval(sort keys %g){print 0+@{$g{$keyval}};}'

Replies are listed 'Best First'.
Re^3: Length of array in hash of arrays
by ambrus (Abbot) on Oct 24, 2013 at 15:27 UTC

    That prints only the length of the first subarray, the one corresponding to the key "k". Let's do better and use the each keyword to print the length of each subarray.

    my %g = (k => [8, 2, 10, 2, 1, 3],l => [10, 7, 9, 0, 1]); %gkey = sort keys %g; print 0+@{$g{each %gkey}}, "\n";