Created
April 24, 2012 20:36
-
-
Save Kerrick/2483510 to your computer and use it in GitHub Desktop.
Different solutions for Fizz Buzz in Ruby
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
def fizz_buzz_1(max) | |
arr = [] | |
(1..max).each do |n| | |
if ((n % 3 == 0) && (n % 5 == 0)) | |
arr << "FizzBuzz" | |
elsif (n % 3 == 0) | |
arr << "Fizz" | |
elsif (n % 5 == 0) | |
arr << "Buzz" | |
else | |
arr << n | |
end | |
end | |
return arr | |
end | |
def fizz_buzz_2(max) | |
arr = [] | |
(1..max).each do |n| | |
if (n % 3 == 0) | |
if (n % 5 == 0) | |
arr << "FizzBuzz" | |
else | |
arr << "Fizz" | |
end | |
elsif (n % 5 == 0) | |
arr << "Buzz" | |
else | |
arr << n | |
end | |
end | |
return arr | |
end | |
def fizz_buzz_3(max) | |
arr = [] | |
(1..max).each do |n| | |
text = "" | |
if (n % 3 == 0) | |
text << "Fizz" | |
end | |
if (n % 5 == 0) | |
text << "Buzz" | |
end | |
if !((n % 3 == 0) || (n % 5 == 0)) | |
text = n | |
end | |
arr << text | |
end | |
return arr | |
end |
require "fizzbuzz"
RSpec.describe FizzBuzz do
describe "#compute" do
context "when number is dvisisble by 3" do
it "returns fizz" do
expect(FizzBuzz.compute(6)).to eq("fizz")
end
end
context "when number is dvisisble by 5" do
it "returns buzz" do
expect(FizzBuzz.compute(10)).to eq("buzz")
end
end
context "when number is dvisisble by both 3 and 5" do
it "returns buzz" do
expect(FizzBuzz.compute(15)).to eq("fizzbuzz")
end
end
end
end
class FizzBuzz
def self.compute(number)
return "fizzbuzz" if (number % 15).zero?
if (number % 3).zero? "fizz" else "buzz" end
end
end
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When I thought we already had way too many solutions... !