Skip to content

Instantly share code, notes, and snippets.

@stomatocode
Created May 2, 2013 03:17
Show Gist options
  • Save stomatocode/5499941 to your computer and use it in GitHub Desktop.
Save stomatocode/5499941 to your computer and use it in GitHub Desktop.
def super_fizzbuzz(array)
array.each do |w|
if w % 15 == 0
puts "FizzBuzz"
elsif w % 3 == 0
puts "Fizz"
elsif w % 5 == 0
puts "Buzz"
else
puts w
end
end
end
super_fizzbuzz([30,9,20,1])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment