Skip to content

Instantly share code, notes, and snippets.

@dncrht
Created March 28, 2016 12:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dncrht/6bb0b49f799678c48bcf to your computer and use it in GitHub Desktop.
Save dncrht/6bb0b49f799678c48bcf to your computer and use it in GitHub Desktop.
my fizzbuzz implementation
100.times do |i|
out = ''
out << 'fizz' if (i%3).zero?
out << 'buzz' if (i%5).zero?
out << i.to_s if out.empty?
puts out
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment