I can't golf it better, but I can fix a bug I've spotted.
If you say your animal isn't bigger than a bread box, it
guesses your animal to be "1", which isn't much fun.
These are my changes:
my %tree = (
'Is your animal larger than a breadbox' => {
'1' => 'giraffe',
'0' => 'cat',
},
); # anon hashref rather than array ref
#234567890#234567890#234567890#234567890#234567890
sub f{
($s,%t)=@_;$q=$s;do{{$v=a($q);$a=$t{$q}->{$v};$q=
$a,redo if$t{$a};$q=$s,next if a($a);$n=&t;$o=i($a
,$n);$t{$o}={0=>$t{$q}->{$v},1=>$n};$t{$q}->{$v}=
$o;$q=$s;}}while&w
}
Sorry about the extra 13 characters. ;) It's a cool
program though, I've got to admit that the idea had me stumped 'til I saw yours and Tilly's answers.
jarich
update: I can't count (or rather I forgot the indexing), 13 extra characters, not 6.
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, details, 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, summary, 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.