- or download this
1 #/usr/bin/perl
2
...
28 print $_;
29 }
30 }
- or download this
push @aoutput, $_ unless /matches\)$/;
- or download this
unless (/matches\)$/) { $no_match_day_two{$_} = 1 }
- or download this
foreach my $match ( keys %no_match_day_two ) {
print $match unless exists $no_match_day_one{$_};
}
- or download this
@nmday_one_but_not_nmdtwo = grep { exists $no_match_day_two{$_} } keys
+ %no_match_day_one;