Skip to content

Instantly share code, notes, and snippets.

@bomatson
Last active August 29, 2015 14:02
Show Gist options
  • Save bomatson/50c075bb550e361c50ca to your computer and use it in GitHub Desktop.
Save bomatson/50c075bb550e361c50ca to your computer and use it in GitHub Desktop.
def check_for_fizz(input)
if (input % 15 == 0)
"FizzBuzz"
elsif (input % 5 == 0)
"Buzz"
elsif (input % 3 == 0)
"Fizz"
else
input
end
end
(1..100).each do |input|
puts check_for_fizz(input)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment