By using a hash as per the FAQ, the intersection/difference calculation will be order-independent. You will have to compare the resulting hash (called
%count in the FAQ) against a given file's content to determine which file lacked the line in question. Note that the FAQ's code fails if either array has repeat entries.
Alternatively, you can use bit operations rather than simple incrementation to encode a little extra info. The FAQ code structure is more immediately obvious, but this may do more of what you want:
#!/usr/bin/perl
use strict;
use warnings;
my $master = shift;
my $completed = shift;
open my $mh, '<', $master or die "Open fail on $master: $!";
my @master_lines = <$mh>;
chomp @master_lines;
open my $ch, '<', $completed or die "Open fail on $completed: $!";
my @completed_lines = <$ch>;
chomp @completed_lines;
my %count;
for my $element (@master_lines) {
$count{$element}|=1;
}
for my $element (@completed_lines) {
$count{$element}|=2;
}
print "$master only:\n";
for my $element (@master_lines) {
next if $count{$element} & 2;
print "$element\n";
}
print "$completed only:\n";
for my $element (@completed_lines) {
next if $count{$element} & 1;
print "$element\n";
}
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.