Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
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.

In reply to Re^2: How to change these small one-liners into Perl6 code? by ABCXYZ
in thread How to change these small one-liners into Perl6 code? by ABCXYZ

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

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

    No recent polls found