I wrote a Perl 6 version (transcoded from the Perl 5 version), which uses the following improvements:
- Instead of another scope for %rtoa, I used a state variable (also available in perl-5.10)
- I wrote the "pipeline" as a set of method calls, which means they are read in the order that they are executed
- Use of a formal parameter
- say instead of print (also available in 5.10)
- (Updated) use hyphens instead of underscores as word separator in the sub name. It's a matter of taste, but I like it better that way.
Here's the code, which works with today's Rakudo:
sub roman-to-dec($x) {
state %rtoa = M=>1000, D=>500, C=>100, L=>50, X=>10, V=>5, I=>1;
$x.uc.split('').map({ %rtoa{$_} }).reduce: { $^a+$^b-$a%$b*2 }
}
my @testdata = <XLII LXIX mi>;
for @testdata -> $r {
say "$r: ", roman-to-dec($r);
}
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.