vote up 3 vote down star
2

What's the shortest Perl one-liner that print out the first 9 powers of a hard-coded 2 digit decimal (say, for example, .37), each on its own line?

The output would look something like:

1
0.37
0.1369
[etc.]

Official Perl golf rules:

  1. Smallest number of (key)strokes wins
  2. Your stroke count includes the command line
flag

75% accept rate
golf is good with clubs and balls, horrid with code. Easy way to learn how to write unreadable code – WolfmanDragon Oct 16 '08 at 20:31
You don't have to play if you don't want to – 1800 INFORMATION Oct 16 '08 at 20:35
Good way to get people to overcome their fear of perl as a write-only language :-P – Tanktalus Oct 16 '08 at 20:51
Looks like there are two with 28 strokes, both requiring Perl 5.10. – Brad Gilbert Oct 16 '08 at 23:06
@Tanktalus: Do you think perl is horrible? Look at this solution in dc: dc -e'20k1p.37dsap7[rla*pr1-d0<b]dsbx' – Hynek -Pichi- Vychodil Jan 2 at 18:42
show 1 more comment

8 Answers

vote up 15 vote down check

With perl 5.10.0 and above:

perl -E'say 0.37**$_ for 0..8'

With older perls you don't have say and -E, but this works:

perl -le'print 0.37**$_ for 0..8'

Update: the first solution is made of 30 key strokes. Removing the first 0 gives 29. Another space can be saved, so my final solution is this with 28 strokes:

perl -E'say.37**$_ for 0..8'
link|flag
Dammit, that was exactly what I was going to post (though shouldn't that 9 be an 8?) – Leon Timmermans Oct 16 '08 at 20:28
Yes, corrected. (Leon, you don't happen to frequent perlmonks as well? if yes, under which nick?) – moritz Oct 16 '08 at 20:38
No, I don't frequent perlmonks (though have an account there using this full name), why? – Leon Timmermans Oct 16 '08 at 21:15
Your answers resemble those that you can find on perlmonks, so I was curios ;-) – moritz Oct 16 '08 at 21:23
Cut the space and 0, and you can cut 2 strokes. – Axeman Oct 16 '08 at 21:59
show 1 more comment
vote up 3 vote down

Just for fun in Perl 6:

  1. 28 characters:

    perl6 -e'.say for .37»**»^9'
    
  2. 27 characters:

    perl6 -e'say .37**$_ for^9'
    

(At least based on current whitespace rules.)

link|flag
vote up 4 vote down
seq 9|perl -nE'say.37**$_'

26 - Yes, that's cheating. (And yes, I'm doing powers from 1 to 9. 0 to 8 is just silly.)

link|flag
seq 9|perl -pE'$_=.37**$_' is also 26 – 1800 INFORMATION Oct 17 '08 at 6:51
seq 9|perl -pe's/./.37**$_/e' not as short, but a bit obfuscated and doesn't need a new perl. – moritz Oct 17 '08 at 6:58
vote up 5 vote down
perl -le'map{print.37**$_}0..8'

31 characters - I don't have 5.10 to try out the obvious improvement using "say" but this is 28:

perl -E'map{say.37**$_}0..8'
link|flag
They both work, I just tested them. – Brad Gilbert Oct 16 '08 at 23:04
vote up 1 vote down
print.37**$_.$/for 0..8

23 strokes if you chop the program before submitting. :-P

link|flag
+9 for perl -e'..'. Remeber, "2 Your stroke count includes the command line" – moritz Oct 16 '08 at 21:53
I thought that was ambiguous, actually. Tournament rules sometimes allow just the program, but add in the length of any command line switches plus a space. – ysth Oct 17 '08 at 6:28
vote up 2 vote down
perl -e 'print .37**$_,"\n" for 0..9'

If you add -l to options you can skip the ,"\n" part

link|flag
vote up 1 vote down
print join("\n", map { 0.37**$_ } (0..9));
link|flag
vote up 0 vote down
perl -e "for(my $i = 1; $i < 10; $i++){ print((.37**$i). \"\n\"); }"

Just a quick entry. :)

Fixed to line break!

link|flag
I think you forgot the newline - you probably need something like this: perl -e "for(my $i = 0; $i < 10; $i++){ print(.37**$i, \"\n\"); }" – Jason Sundram Oct 16 '08 at 20:22
Great minds think alike. Was just fixing it, but I think toolkit might just have me! – Abyss Knight Oct 16 '08 at 20:24
perl -e 'print .37**$_ ."\n" foreach (1..10);' # a slightly shorter version of what Abyss is doing. – J.J. Oct 16 '08 at 20:26
If you don't want "\n", you can use $/ instead. It holds the input record separator, defaults to "\n" and is two characters shorter. – moritz Oct 16 '08 at 21:01

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.