Doing it with substitutions
sub bowlscore
{
my $t;
$_=join(',',@_);
while(s/X,X,X/30,X,X/){}
s!X,X,(\d)!20+$1.",X,$1"!eg;
s!X,(\d),(\d)!10+$1+$2.",$1,$2"!eg;
s!X,\d,/!20,1,/!g;
s!\d,/,(\d)(\b)!10+$1.",$1$2"!eg;
s!\d,/(?=,\d\d)!20!g;
s!(\d\d)(,\d){1,2}$!$1!;
map($t+=$_,split(/,/));
$t;
}
223 chars not counting the unnecessary whitespace for the body of the function. It's not the lowest bytecount here, but at least it's lower than my bowling highscore.
Update:
This fixes a bug pointed out by
dragonchild
sub bowlscore
{
my $t;
$_=join(',',@_);
while(s/X,X,X/30,X,X/){}
s!X,X,(\d)!20+$1.",X,$1"!eg;
s!X,(\d),(\d)!10+$1+$2.",$1,$2"!eg;
s!X,\d,/!20,0,/!g;
s!/,X!20!;
s!\d,/,(\d)(\b)!10+$1.",$1$2"!eg;
s!\d,/(?=,\d\d)!20!g;
s!(\d\d)(,\d){1,2}$!$1!;
map($t+=$_,split(/,/));
$t;
}
10 chars added.
And another correction:
s!\d,/,(\d)(\b)!10+$1.",$1$2"!eg;
should be
while(s!\d,/,(\d)(\b)!10+$1.",$1$2"!eg){}
for multiple spare frames in a row to work.
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.