I have a data that looks like this:
3
2
1
5
What I want to get is the “decreasing” cumulative of this data
yielding
11
8
6
5
0
What is the compact way of doing that in Perl?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
or
Note: these both require an extra statement
my $s=0;usingstrict.But may I ask WHY?