What's the shortest Perl program you can write for the number guessing game? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T00:34:37Zhttp://stackoverflow.com/feeds/question/835886http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/835886/whats-the-shortest-perl-program-you-can-write-for-the-number-guessing-game6What's the shortest Perl program you can write for the number guessing game?Michal Rogozinski2009-05-07T17:04:30Z2009-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 = <STDIN>;
chop($inp);
if ($inp > $guess){print "too much\n"}
if ($inp < $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#8360058Answer by Sinan Ünür for What's the shortest Perl program you can write for the number guessing game?Sinan Ünür2009-05-07T17:30:19Z2009-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 <=> <STDIN>;
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#8360878Answer by bdonlan for What's the shortest Perl program you can write for the number guessing game?bdonlan2009-05-07T17:48:16Z2009-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";$_=<><=>$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#8361294Answer by ephemient for What's the shortest Perl program you can write for the number guessing game?ephemient2009-05-07T17:56:37Z2009-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[$&]/;
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><=></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#8364475Answer by Chris Lutz for What's the shortest Perl program you can write for the number guessing game?Chris Lutz2009-05-07T19:08:26Z2009-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<=><>]}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<=><>]}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 <=> <>]
} 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#8365283Answer by xdg for What's the shortest Perl program you can write for the number guessing game?xdg2009-05-07T19:23:27Z2009-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[<><=>$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[<><=>$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#12828610Answer by Shaun Mallette for What's the shortest Perl program you can write for the number guessing game?Shaun Mallette2009-08-15T21:14:16Z2009-10-22T17:24:56Z<pre><code>$im_thinking_of=int(rand 10);
print "Pick a number:";
$guess=<STDIN>;
chomp $guess;
if ($guess > $i'm_thinking_of) {
print "You guessed too high!\n";
}
elsif ($Guess < $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#16055512Answer by Eric Strom for What's the shortest Perl program you can write for the number guessing game?Eric Strom2009-10-22T07:29:59Z2009-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)[<><=>$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)[<> <=> $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#16087602Answer by brian d foy for What's the shortest Perl program you can write for the number guessing game?brian d foy2009-10-22T17:32:19Z2009-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( <STDIN> ) {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( <STDIN> ) {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 "<STDIN>; say 'That's right. Good job. You are awesome.'"
</code></pre>