Skip to content

Instantly share code, notes, and snippets.

@aalvarado
Created June 1, 2015 14:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aalvarado/f288dc993a4f5847ff2e to your computer and use it in GitHub Desktop.
Save aalvarado/f288dc993a4f5847ff2e to your computer and use it in GitHub Desktop.
FizzBuzz Ruby without any integer modulus or division
limit = 100
fizz = ['']*2 << 'fizz'
buzz = ['']*4 << 'buzz'
(1..limit).to_a.zip(fizz.cycle(limit).to_a.zip(buzz.cycle(limit).to_a)).each{ |n| puts n.join(' ') }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment