Just to chime in with my own version,
1-10, 500x: 2 secs ( 1.13 usr 0.00 sys = 1.13 cpu) (printing)
1-10, 500x: 1 secs ( 0.48 usr 0.00 sys = 0.48 cpu) (not printing)
1-35m 10x: 26 secs (26.53 usr 0.00 sys = 26.53 cpu) (printing)
1-35, 10x: 15 secs (15.05 usr 0.00 sys = 15.05 cpu) (not printing)
My approach is similar to several of the ones already posted, but differs enough that I figured I might as well post it:
$x = 1;
for(1..10){
$x =~ s/((.)\2*)/length($1).$2/ge;
#print "@{[split//,$x]}\n";
}
Uncomment that print line to print everything out. And, of course, get rid of the array-de-ref function call if you don't care about spaces between the numbers.
Incidentally, I used the array ref so I could take advantage of $" being a space and not have to worry about mapping the numbers so they'd have spaces between them.
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, 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, 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.
|
|