Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re^2: optimal way of comparing 2 arrays

by narashima (Beadle)
on Oct 20, 2005 at 13:51 UTC ( [id://501668]=note: print w/replies, xml ) Need Help??


in reply to Re: optimal way of comparing 2 arrays
in thread optimal way of comparing 2 arrays

Hi Blazar,
No duplicates in these arrays. All values are unique.
thanks
narashima
  • Comment on Re^2: optimal way of comparing 2 arrays

Replies are listed 'Best First'.
Re^3: optimal way of comparing 2 arrays
by blazar (Canon) on Oct 20, 2005 at 15:00 UTC
    Then the solution above may be simplified to:
    #!/usr/bin/perl -l use strict; use warnings; my @file1=qw/foo bar baz/; my @file2=qw/fred bar barney/; my %saw; $saw{$_}++ for @file1, @file2; print <<"EOT" \@file1 only: (@{[ grep $saw{$_}==1, @file1 ]}) \@file2 only: (@{[ grep $saw{$_}==1, @file2 ]}) common: (@{[ grep $saw{$_}==2, @file2 ]}) EOT __END__
    or even, using modulo-2 math, but more obscurely:
    #!/usr/bin/perl -l use strict; use warnings; my @file1=qw/foo bar baz/; my @file2=qw/fred bar barney/; my %saw; $saw{$_} ^= 1 for @file1, @file2; print <<"EOT" \@file1 only: (@{[ grep $saw{$_}, @file1 ]}) \@file2 only: (@{[ grep $saw{$_}, @file2 ]}) common: (@{[ grep !$saw{$_}, @file2 ]}) EOT __END__

Log In?
Username:
Password:

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

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

    No recent polls found