Skip to content

Instantly share code, notes, and snippets.

@seanreed1111
Created November 19, 2013 20:28
Show Gist options
  • Save seanreed1111/7551995 to your computer and use it in GitHub Desktop.
Save seanreed1111/7551995 to your computer and use it in GitHub Desktop.
FizzBuzz method
def fizzbuzz(number)
if number % 15 == 0
"Fizzbuzz"
elsif number % 3 == 0
"Fizz"
elsif number % 5 == 0
"Buzz"
else
number
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment