Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re^2: Matching elements inside two array

by hdb (Monsignor)
on Apr 10, 2019 at 08:24 UTC ( [id://1232394]=note: print w/replies, xml ) Need Help??


in reply to Re: Matching elements inside two array
in thread Matching elements inside two array

And a version based on a dispatch table (which is definitely overkill in a simple situation like this):

use strict; use warnings; my @input_array = qw( N1 N2 N3 N6 N7 ); my @input_A = qw( N1 N3 N11 N11 N10 N16 ); my @input_B = qw( N3 N6 N2 N7 N16 N19 ); my %flags; $flags{$_} |= 1 for @input_array; $flags{$_} |= 2 for @input_A; $flags{$_} |= 4 for @input_B; my %primaryCCO; my %dispatch = ( 3 => sub { my $label = shift; print "$label: only 1 input is PI\n" + }, 5 => sub { my $label = shift; print "$label: this is a wire\n" }, 7 => sub { my $label = shift; $primaryCCO{$label} = [1,1]; print "$label: CCO = ( @{$primaryCCO{$label}} )\n"; }, ); exists $dispatch{ $flags{$_}} and $dispatch{ $flags{$_} }->($_) for ke +ys %flags;

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (4)
As of 2024-03-29 01:41 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found