http://www.perlmonks.org?node_id=436398

ozgurp has asked for the wisdom of the Perl Monks concerning the following question:

Hi All, I have a multidimensional array that can grow or decrease in size in both directions (I mean the number of rows and the number of columns), How can I find the size of each row (the number of columns in each row)? The following statement gives me only the number of rows but I cannot get number of columns in each row:
my $size = @INFO_ARRAY;
Thanks.