Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re: Problem with HOA.

by cog (Parson)
on Aug 28, 2006 at 07:10 UTC ( [id://569939]=note: print w/replies, xml ) Need Help??


in reply to Problem with HOA.

my @array = map { $hash{$_}->[0] } sort { $a <=> $b } keys %hash;

That's the first solution that comes to my mind. Try reading it backwards:

    1. Take the keys of the hash... (keys %hash)
    2. ...sort them numerically... (sort { $a <=> $b } ...)
    3. ...and get the first element of the array corresponding to each key in the hash... (map { $hash{$_}->[0] } ...)

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (7)
As of 2024-03-19 01:59 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found