Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: Array of arrays - redux

by space_monk (Chaplain)
on Jun 18, 2013 at 11:26 UTC ( [id://1039547]=note: print w/replies, xml ) Need Help??


in reply to Array of arrays - redux

# I assume this is already loaded up my @AoA; # lookback array my @lookback; my $lc = 0; while (my $el = shift $AoA) { my $search = $el->[3]; # see if search term in lookback if (grep("/$search/", map { $_->[3]}, @lookback)) { # found a match } if ($lc < 15) { $lc++; } else { # take 1 element off shift @lookback; } push @lookback, $el; }
If you spot any bugs in my solutions, it's because I've deliberately left them in as an exercise for the reader! :-)

Log In?
Username:
Password:

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

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

    No recent polls found