Skip to content

Instantly share code, notes, and snippets.

@kyuden
Last active December 19, 2015 12:59
Show Gist options
  • Save kyuden/5958976 to your computer and use it in GitHub Desktop.
Save kyuden/5958976 to your computer and use it in GitHub Desktop.
fizzbuzz
def fizz_buzz(n)
trance = "#{["Fizz"][n % 3]}#{["Buzz"][n % 5]}"
trance.empty? ? n.to_s : trance
end
puts (1..100).map{|n| fizz_buzz n }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment