Skip to content

Instantly share code, notes, and snippets.

@kirikiriyamama
Last active December 17, 2015 00:29
Show Gist options
  • Save kirikiriyamama/5520857 to your computer and use it in GitHub Desktop.
Save kirikiriyamama/5520857 to your computer and use it in GitHub Desktop.
mapでFizzBuzzワンライナー
puts (1..100).map { |i| (s = (i % 3 == 0 ? 'Fizz' : '') << (i % 5 == 0 ? 'Buzz' : '')).empty? ? i : s }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment