Skip to content

Instantly share code, notes, and snippets.

@avdept
Created May 24, 2016 15:54
Show Gist options
  • Save avdept/82b4c012cdb0721db04988fd074742e2 to your computer and use it in GitHub Desktop.
Save avdept/82b4c012cdb0721db04988fd074742e2 to your computer and use it in GitHub Desktop.
(1..100).to_a.each do |num|
str = ""
numb = num
if num % 3 == 0
str += "fuzz"
numb = ''
end
if num % 5 == 0
str += "buzz"
numb = ''
end
str += numb.to_s
p str
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment