Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: Look at the next value of hash when sorting by values

by choroba (Cardinal)
on Feb 13, 2017 at 17:31 UTC ( [id://1181905]=note: print w/replies, xml ) Need Help??


in reply to Look at the next value of hash when sorting by values

Or just keep the previous value in a variable. I'd understand "sorting by values" as walking the hash keys in the order of the values.
#!/usr/bin/perl use warnings; use strict; use feature qw{ say }; my %color_of = ( apple => 'red', orange => 'orange', grape => 'purple', tomato => 'red', lettuce => 'green', peanut => 'tan', ); my $previous; for my $fruit_or_vegetable ( sort { $color_of{$a} cmp $color_of{$b} } keys %color_of ) { say "$previous before $fruit_or_vegetable" if defined $previous; $previous = $fruit_or_vegetable; }
($q=q:Sq=~/;[c](.)(.)/;chr(-||-|5+lengthSq)`"S|oS2"`map{chr |+ord }map{substrSq`S_+|`|}3E|-|`7**2-3:)=~y+S|`+$1,++print+eval$q,q,a,

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (8)
As of 2024-03-28 09:34 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found