Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: Read array of arrays in reverse order

by nvivek (Vicar)
on Apr 19, 2010 at 03:14 UTC ( [id://835384]=note: print w/replies, xml ) Need Help??


in reply to Read array of arrays in reverse order

Following script also does the job.Normally in Perl,array indexes starts from 0.
use strict; use warnings; my @my_arr = ( [1, 11, 0, 0], [12, 109, 0, 0], [16, 1, 16, 0], [14, 14, 2, 0], [45, 16, 5, 4], ); my $index=$#my_arr; while($index) { push @diagonal,$my_arr[$index][$index-1]; --$index; }
print join '-', @diagonal;

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://835384]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (5)
As of 2024-03-29 07:46 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found