Skip to content

Instantly share code, notes, and snippets.

@natchiketa
Created October 2, 2014 04:41
Show Gist options
  • Save natchiketa/f13931bb061de0380f5a to your computer and use it in GitHub Desktop.
Save natchiketa/f13931bb061de0380f5a to your computer and use it in GitHub Desktop.
FizzBuzz with Ruby
puts (1..100).map { |n|
w = [
('Fizz' if n % 3 == 0),
('Buzz' if n % 5 == 0)
]
.uniq()
.compact()
.join('')
w.empty? ? n : w
}.join("\n")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment