Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re: Sliding window

by repellent (Priest)
on Jan 29, 2012 at 00:28 UTC ( [id://950534]=note: print w/replies, xml ) Need Help??


in reply to Sliding window

my %hash = (a=>2, b=>1, c=>5, d=>3, e=>4); my $input = "abcdaeec"; my @v = map $hash{$_}, (split //, $input); for my $n (2, 3) { my @w = map $v[$_] + $v[$_ + $n], 0 .. $#v - $n; print "@w\n"; } __END__ 7 4 7 7 6 9 5 3 9 7 7

Log In?
Username:
Password:

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

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

    No recent polls found