Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

In cases like this I prefer to first classify each label by setting a flag in which array it is present. I do this by using bits (1 for @input_array, 2 for @input_A, 4 for @input_B). In the second step the labels are processed based on their flags.

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; for (keys %flags) { next unless $flags{$_} & 1; print "$_: only 1 input is PI\n" if $flags{$_} == 3; print "$_: this is a wire\n" if $flags{$_} == 5; if( $flags{$_} == 7 ) { $primaryCCO{$_} = [1,1]; print "$_: CCO = ( @{$primaryCCO{$_}} )\n"; } }

Remark: I have implied the desired logic from Athanasius output rather than studying your code, so I hope I got it right...


In reply to Re: Matching elements inside two array by hdb
in thread Matching elements inside two array by ameezys

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (4)
As of 2024-04-19 12:02 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found