Skip to content

Instantly share code, notes, and snippets.

@CoralineAda
Created September 19, 2019 01:31
Show Gist options
  • Save CoralineAda/5784e14279e24e5117435ff79026a505 to your computer and use it in GitHub Desktop.
Save CoralineAda/5784e14279e24e5117435ff79026a505 to your computer and use it in GitHub Desktop.
p (1..100).map{|i| (i % 15 == 0 && "fizzbuzz") || (i % 3 == 0 && "fizz") || (i % 5 == 0 && "buzz") || i} * ","
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment