Here is my entry in the Golf game, but with some additions
that may throw me off the tour.
I made two data structures @a for animals and @q for
questions. I then update these inside of the allowed
subs that are/were outlined in the rules. With that said
I am at ~111 characters in my do_it sub.
my @q = ( 'Is your animal larger then a bread box',
'Is your animal taller then a car' );
my @a = ( 'dog' );
sub a {
print shift, "?\n";
my $a = <>;
return 1 if $a =~ /y/i;
}
sub g {
print 'I think your animal is a ', shift , ", am I right?\n";
my $a = <>;
return 1 if $a =~ /y/i;
}
sub t {
my $q = shift;
print "What was your animal?\n";
my $a = <>;
chomp $a;
push @a , $a;
return $a;
}
sub i {
my ($u,$g) = @_;
print "What is a question that is true for $u, but false for $g?\n
+";
my $answer = <STDIN>;
chomp $answer;
push @q , $answer;
return $answer;
}
sub w {
print "Do you want to conitue?\n";
my $a = <>;
if ($a =~ /n/i) {
die "Thanks for playing\n";
};
do_it();
}
sub do_it{
for$s(@a){$g=$s;for$q(@q){if(a($q)){$g=$r{$q}||$s}}
if(g($g)){w()}else{$t=t();$i=i($t,$g);$r{$i}=$t;do_it()}}}
&do_it();
1;
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.
|
|