Skip to content

Instantly share code, notes, and snippets.

@st98
Last active December 28, 2015 02:49
Show Gist options
  • Save st98/7431129 to your computer and use it in GitHub Desktop.
Save st98/7431129 to your computer and use it in GitHub Desktop.
Rubyの練習。FizzBuzzです。
1.upto(100) do |i|
s = "#{[:Fizz][i % 3]}#{[:Buzz][i % 5]}"
puts s.empty? ? i : s
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment