Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: How to remove duplicate key/value pairs in hash of array

by dws (Chancellor)
on Feb 20, 2001 at 23:20 UTC ( [id://59740]=note: print w/replies, xml ) Need Help??


in reply to How to remove duplicate key/value pairs in hash of array

You can eliminate duplicate values by inverting the hash (turning key/value pairs into value/key pairs) and then re-inverting.
%hash = (a => 1, b => 1, c => 2); %hash = reverse %hash; # key/value -> value/key %hash = reverse %hash; foreach $key ( keys %hash ) { print $key, " => ", $hash{$key}, "\n"; }

Replies are listed 'Best First'.
Re^2: How to remove duplicate key/value pairs in hash of array
by bdalzell (Sexton) on Feb 04, 2009 at 15:18 UTC
    this works to remove duplicate values but if the keys are numeric it removes the lower numbered key value pairs. how would you remove the higher key numbered key value pairs retaining the key/value pair with the lowest value key?

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (3)
As of 2024-12-09 04:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?
    Which IDE have you been most impressed by?













    Results (53 votes). Check out past polls.