Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re: Golf Challenge: FizzBuzz

by talexb (Chancellor)
on Mar 02, 2007 at 20:41 UTC ( [id://602960]=note: print w/replies, xml ) Need Help??


in reply to Golf Challenge: FizzBuzz

My father's a British actuary, so growing up we had an amusing variation on this game, often played in the car during long trips. In addition to 'fizz' (3) and 'buzz' (5) we would also play with 'sausage' (7) to make the game a bit more challenging.

Of course, after someone had made a mistake, they had to drop out, which changed what order the fizz, buzz or sausage came around to you. And I don't think we ever made it as far as the first 'fizz-buzz-sausage' -- 105.

Alex / talexb / Toronto

"Groklaw is the open-source mentality applied to legal research" ~ Linus Torvalds

Update: OK, let's see if I can pass the code testing bit:

#!/usr/bin/perl -w use strict; { for (1..100) { my @a; push(@a,'fizz') if ($_%3==0); push(@a,'buzz') if ($_%5==0); push(@a,'sausage') if ($_%7==0); if (@a) { print join(' ',@a) . "\n"; } else { print "$_\n"; } } }
OK, except for a typo (I had 6 instead of 7) it worked first time. I guess I'm not too thumb-fingered.

ps No, that was obviously *not* golfed. ;)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://602960]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (4)
As of 2024-04-25 17:50 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found