Created
May 24, 2016 15:54
-
-
Save avdept/82b4c012cdb0721db04988fd074742e2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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