diff --git a/exercises/fizzbuzz.rs b/exercises/fizzbuzz.rs index bd8b38c1..03e0cad7 100644 --- a/exercises/fizzbuzz.rs +++ b/exercises/fizzbuzz.rs @@ -12,12 +12,6 @@ // I AM NOT DONE pub fn fizzbuzz(num: i32) -> String { - match (num % 3, num % 5) { - (0, 0) => "fizzbuzz".to_string(), - (0, _) => "fizz".to_string(), - (_, 0) => "buzz".to_string(), - (_, _) => num.to_string(), - } } // Don't change this part(the tests)