Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: Extracting elements in one array but not in another

by emazep (Priest)
on Oct 23, 2004 at 06:50 UTC ( [id://401778]=note: print w/replies, xml ) Need Help??


in reply to Extracting elements in one array but not in another

To find elements that are in one array but not in another, there is a nice loopless solution from the Perl Cookbook which uses the delete function:
my %seen; @seen{ @original_1 } = (); delete @seen{ @original_2 }; my @original_1_only = keys %seen;
Of course there is also a loopy solution, should you prefer it:
my %seen; my @original_1_only; @seen{ @original_2 } = (); foreach (@original_1) { push(@original_1_only, $_) unless exists $seen{$_}; };
Stick with these.

Ciao,
Emanuele.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (3)
As of 2024-04-26 03:04 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found