I was simply translating my Perl5 one-liners on ProjectEuler into Perl6's code.
These are all on its first problem:
If we list all the natural numbers below 10 that are multiples of 3 or
+ 5, we get 3, 5, 6 and 9. The sum of these multiples is 23.
Find the sum of all the multiples of 3 or 5 below 1000.
(I generalized this to:
below 10**$n for code #1 and #2,
or below $N for code #3)
This is my fastest solution in Perl5: (not in the code #1..4 above)
perl5 -e '$n=3;print 2,3x--$n,1 .6x$n+2'
The following is the origin of code #1, which works beyond the limit of 64 bit int, since it uses string op:
$n=3;print 2,(3x--$n.1 .6x--$n.8)=~s/^18/3/r
This is the origin of code #2:
$n=3;$_=2 .3x--$n.1 .6x$n;substr($_,-1)+=2;print
So code #3 is a more general solution for $N which is typically not an integer exponentiation of 10:
map{$s+=int$_*($i=abs int 999/$_)*++$i/2}(3,5,-15);print$s
They all give the same result: 233168 for $n=3, but work for other $n as well.
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.