I think this does what you want:
use warnings;
use strict;
my @charges = qw/ch1 ch2 ch3 ch4 ch5 ch6 ch7 ch8 ch1 ch2
ch3 ch4 ch5 ch1 ch2 ch6 ch7 ch4 ch3 ch9 ch2 ch4/;
my %bundle1 = map { $_ => 0 } qw(ch3 ch4 ch6);
my %b = %bundle1;
my @final;
my @del;
for (@charges) {
if (exists $bundle1{$_}) {
delete $b{$_};
if (!keys %b) {
# seen them all, so reset
%b = %bundle1;
@del = ();
push@final,'chx';
} else {
# keep it, in case not all are seen
push@del,$_;
}
}
else {
push@final,$_;
}
}
push@final,@del; # add back any remainders
print "@final\n";
__OUTPUT__
ch1 ch2 ch5 chx ch7 ch8 ch1 ch2 ch5 ch1 ch2 chx ch7 ch9 ch2 ch4 ch3 ch
+4
One possible problem: it will slightly alter the order of your list if a partial bundle is seen.
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.