What's the shortest Perl program you can write for the number guessing game? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T00:34:37Z http://stackoverflow.com/feeds/question/835886 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/835886/whats-the-shortest-perl-program-you-can-write-for-the-number-guessing-game 6 What's the shortest Perl program you can write for the number guessing game? Michal Rogozinski 2009-05-07T17:04:30Z 2009-10-22T17:32:19Z <p>I'm looking for the shortest or most optimized solution for a simple game that generates a random number from 1 to 10 and then asks a user to enter their guess. If the user guesses the number then it's a win, if they don't guess then the program should say that it was either more or less than that. </p> <p>Here's my solution to this:</p> <pre><code>#c:\Perl\bin\Perl.exe use strict; use warnings; my $guess = int(rand 10); my $inp; do{ print "Gimme your guess 1-10:\n"; $inp = &lt;STDIN&gt;; chop($inp); if ($inp &gt; $guess){print "too much\n"} if ($inp &lt; $guess){print "too few\n"} }while ($inp != $guess); print "Bingo! It was: $guess"; </code></pre> <p>What I'm looking for is some Perl magic. I don't have much Perl experience and I'd like to see some crazy Perl action here if it's true what they say about Perl scripts. Thanks for your time.</p> http://stackoverflow.com/questions/835886/whats-the-shortest-perl-program-you-can-write-for-the-number-guessing-game/836005#836005 8 Answer by Sinan Ünür for What's the shortest Perl program you can write for the number guessing game? Sinan Ünür 2009-05-07T17:30:19Z 2009-05-07T22:29:50Z <p>I never played golf before. Here is the edited version following <a href="http://stackoverflow.com/users/90567/bubaker">bubaker</a>'s suggestion.</p> <pre><code>#!/usr/bin/perl use strict; use warnings; my @m = ('you win', 'too small', 'too big'); my $g = 1 + int rand 10; do { print "Gimme your guess 1-10:\n"; $_ = $g &lt;=&gt; &lt;STDIN&gt;; print "$m[$_]\n"; } while $_; __END__ </code></pre> http://stackoverflow.com/questions/835886/whats-the-shortest-perl-program-you-can-write-for-the-number-guessing-game/836087#836087 8 Answer by bdonlan for What's the shortest Perl program you can write for the number guessing game? bdonlan 2009-05-07T17:48:16Z 2009-05-07T17:48:16Z <pre><code>@_=('too small','you win','too big');$_=$v=int(rand 10)+1;while($_){print"Gimme your guess 1-10:\n";$_=&lt;&gt;&lt;=&gt;$v;print$_[$_+1],"\n"} </code></pre> <p>130 characters</p> http://stackoverflow.com/questions/835886/whats-the-shortest-perl-program-you-can-write-for-the-number-guessing-game/836129#836129 4 Answer by ephemient for What's the shortest Perl program you can write for the number guessing game? ephemient 2009-05-07T17:56:37Z 2009-05-08T01:26:35Z <p>154 characters (discounting newlines):</p> <pre><code>#!/usr/bin/perl -p INIT{@m=((' few')x($g=1+int+rand+10),$g,(' much')x9), $\="Gimme your guess 1-10:\n",print}s/.*/$m[$&amp;]/; s/ /Too /||undef$\^print("Bingo! It was: $_")+last </code></pre> <p>I was thinking, "if only I had some sort of comparison function returning <code>(-1|0|1)</code>!" while I was writing this...</p> <p>Somehow completely forgot about <code>&lt;=&gt;</code>, which is winning the least-character count wars in here. Even pulling out the <code>$\</code> trick doesn't win against that, so I conceed. **waves white flag**</p> <pre><code> ______________________________________________________ / ,. ~ / . :%%%. .%%%. ~ / __%%%(\ `%%%%% .%%%%% ~ / /a ^ '% %%%% %: ,% %%"` ~ / '__.. ,'% .-%: %-' % ~ / ~~""%:. ` % ' . `. ~ / %% % ` %% .%: . \. ~ / %%:. `-' ` .%% . %: :\ ~ / %(%,%..." `%, %%' %% ) ) ~ / %)%%)%%' )%%%.....- ' "/ ( ~ / %a:f%%\ % / \`% "%%% ` / \)) ~ / %(%' % /-. \ ' \ |-. '. ~ / `' |% `() \| `() ~ / || / () / ~ / () 0 | o ~ / \ /\ o / ~ / o ` /-| ~ / ,-/ ` ,-/ ~ /_____________________________________________________~ // // // orz </code></pre> http://stackoverflow.com/questions/835886/whats-the-shortest-perl-program-you-can-write-for-the-number-guessing-game/836447#836447 5 Answer by Chris Lutz for What's the shortest Perl program you can write for the number guessing game? Chris Lutz 2009-05-07T19:08:26Z 2009-05-08T19:15:57Z <p>130 character 1-liner from the command prompt (120 characters of code if you don't count <code>perl -E</code>):</p> <pre><code>perl -E '$g=1+int rand 10;@_=("Bingo! It was: $g","too few","too much");do{say"Gimme your guess 1-10:";say$_[$_=$g&lt;=&gt;&lt;&gt;]}while$_;' </code></pre> <p>Version to put in a file (130 characters of code because I can't cheat and use <code>-E</code>):</p> <pre><code>use 5.010;$g=1+int rand 10;@_=("Bingo! It was: $g","too few","too much");do{say"Gimme your guess 1-10:";say$_[$_=$g&lt;=&gt;&lt;&gt;]}while$_; </code></pre> <p>Thanks to pjf for suggesting I <code>use 5.010</code> rather than <code>use 5.10.0</code>. Readable version (just formatted nicely for those of us who can't follow Perl one-liners):</p> <pre><code>use 5.010; $guess = 1 + int rand 10; @array = ("Bingo! It was: $guess", "too few", "too much"); do{ say "Gimme your guess 1-10:"; say $array[$_ = $guess &lt;=&gt; &lt;&gt;] } while $_; </code></pre> <p>Of course, none of this is <code>strict</code>- or <code>warnings</code>-safe, but it <em>works</em>.</p> http://stackoverflow.com/questions/835886/whats-the-shortest-perl-program-you-can-write-for-the-number-guessing-game/836528#836528 3 Answer by xdg for What's the shortest Perl program you can write for the number guessing game? xdg 2009-05-07T19:23:27Z 2009-05-07T19:23:27Z <p>Here's an approach with recursion. </p> <p>I fixed the range bug since int(rand(10) is 0-9. I'm also replicating the exact logic of the original, with strict, warnings and the exact text and without relying on a shebang line. Here it is with indentation so it's easier to follow:</p> <pre><code>use strict; use warnings; my($g,@m)=(1+int rand 10,'',"too much\n","too few\n"); sub g{ print"Gimme your guess 1-10:\n"; syswrite(STDOUT,$m[&lt;&gt;&lt;=&gt;$g]) ? g() : $g; } print "Bingo! It was @{[g()]}\n"; </code></pre> <p>Golfing with the same approach, without strict and warnings gets you this at 158 characters:</p> <pre><code>($g,@m)=(1+int rand 10,'',"too much\n","too few\n");sub g{print"Gimme your guess 1-10:\n";syswrite(STDOUT,$m[&lt;&gt;&lt;=&gt;$g])?g():$g;}print"Bingo! It was @{[g()]}\n" </code></pre> http://stackoverflow.com/questions/835886/whats-the-shortest-perl-program-you-can-write-for-the-number-guessing-game/1282861#1282861 0 Answer by Shaun Mallette for What's the shortest Perl program you can write for the number guessing game? Shaun Mallette 2009-08-15T21:14:16Z 2009-10-22T17:24:56Z <pre><code>$im_thinking_of=int(rand 10); print "Pick a number:"; $guess=&lt;STDIN&gt;; chomp $guess; if ($guess &gt; $i'm_thinking_of) { print "You guessed too high!\n"; } elsif ($Guess &lt; $i'm_thinking_of) { print "You guessed too low!\n"; } else { print "You got it right!\n"; } </code></pre> http://stackoverflow.com/questions/835886/whats-the-shortest-perl-program-you-can-write-for-the-number-guessing-game/1605551#1605551 2 Answer by Eric Strom for What's the shortest Perl program you can write for the number guessing game? Eric Strom 2009-10-22T07:29:59Z 2009-10-22T17:13:19Z <p>124 characters :) (remove the newline)</p> <pre><code>use 5.010;$g=1+int rand 10;while(say"Gimme your guess 1-10:") {say"too ",qw(0 much few)[&lt;&gt;&lt;=&gt;$g]||last}say"Bingo! It was: $g" </code></pre> <p>expanded out</p> <pre><code>use 5.010; $guess = 1 + int rand 10; while (say "Gimme your guess 1-10:") { say "too ", qw(0 much few)[&lt;&gt; &lt;=&gt; $guess] || last } say "Bingo! It was: $guess" </code></pre> http://stackoverflow.com/questions/835886/whats-the-shortest-perl-program-you-can-write-for-the-number-guessing-game/1608760#1608760 2 Answer by brian d foy for What's the shortest Perl program you can write for the number guessing game? brian d foy 2009-10-22T17:32:19Z 2009-10-22T17:32:19Z <p>If you want to keep people busy so you can keep some work done, try:</p> <pre><code> perl -E "while( &lt;STDIN&gt; ) {say 'Try again.'}" </code></pre> <p>This is the best guessing game evah because you get the maximum number of guesses every time you run it. There's none of that cripple-ware limited guessing programs.</p> <p>If you want to tell users that eventually they can guess the number, you can make a slight modification:</p> <pre><code> perl -E "while( &lt;STDIN&gt; ) {last if (\$_ == rand 100 ); say 'Try again.'}" </code></pre> <p>If they still complain that it's too hard, you can have a beginner version:</p> <pre><code> perl -E "&lt;STDIN&gt;; say 'That's right. Good job. You are awesome.'" </code></pre>