Created
October 4, 2012 00:22
-
-
Save KirinDave/3830756 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
class FizzBuzz | |
def initialize | |
@printed = nil | |
@printers = [ lambda {|x| print (@printed = "Fizz") if x % 3 == 0}, | |
lambda {|x| print (@printed = "Buzz") if x % 5 == 0}, | |
lambda {|x| print (@printed = "Bazz") if x % 7 == 0} ] | |
end | |
def for_num(i) | |
@printed = nil | |
@printers.each { |l| l.call(i) } | |
print i unless @printed | |
puts # Newline | |
end | |
def run(x = 100) | |
(1..x).to_a.each { |i| for_num(i) } | |
end | |
end | |
# Add option to count to values > 100 since 3 * 5 * 7 > 100 | |
FizzBuzz.new.run(ARGV.first || 100) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment