Skip to content

Instantly share code, notes, and snippets.

@kirikiriyamama
Last active December 17, 2015 00:29
Show Gist options
  • Save kirikiriyamama/5520862 to your computer and use it in GitHub Desktop.
Save kirikiriyamama/5520862 to your computer and use it in GitHub Desktop.
文字列中の式展開でFizzBuzzワンライナー
1.upto(100) { |i| puts (s = "#{['Fizz'][i % 3]}#{['Buzz'][i % 5]}").empty? ? i : s }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment