Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re^5: Golf Challenge: FizzBuzz

by jdporter (Paladin)
on Dec 27, 2015 at 04:58 UTC ( [id://1151213]=note: print w/replies, xml ) Need Help??


in reply to Re^4: Golf Challenge: FizzBuzz
in thread Golf Challenge: FizzBuzz

Sorry. :-D

Here's my fun solution to the problem. It's not golfed, but is intended to show a different approach from the usual modulus operator based solutions. Instead, this uses a "generator".

use strict; use warnings; $\ = "\n"; my %label = ( 3 => 'fizz', 5 => 'buzz', ); my $end = 100; my %queue; $queue{0}{$_} = 1 for keys %label; my $i = 0; while (1) { my($n) = sort { $a <=> $b } keys %queue; # "shift" the next genera +ted number while ( $i < $n ) { print $i++; } # print any "non-special" number +s before it last if $i++ > $end; my @why_its_special = sort { $a <=> $b } keys %{ delete $queue{$n} + }; print @label{ @why_its_special }; $queue{ $n + $_ }{$_} = 1 for @why_its_special; # generate the ne +xt succeeding number(s) }
I reckon we are the only monastery ever to have a dungeon stuffed with 16,000 zombies.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (9)
As of 2024-03-28 18:54 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found