Skip to content

Instantly share code, notes, and snippets.

@jaronson
Created January 21, 2016 20:16
Show Gist options
  • Save jaronson/49a951779243beca3c23 to your computer and use it in GitHub Desktop.
Save jaronson/49a951779243beca3c23 to your computer and use it in GitHub Desktop.
def get_fizzy_with_it(value)
''.tap do |out|
is_multiple(value, 3) && out << 'Fizz'
is_multiple(value, 5) && out << 'Buzz'
end
end
def is_multiple(value, n)
value % n == 0
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment