Решение на FMI Buzz от Ивайло Кирязов
Резултати
- 15 точки от тестове
- 0 бонус точки
- 15 точки общо
- 10 успешни тест(а)
- 0 неуспешни тест(а)
Код
pub fn fizzbuzz(n: usize) -> Vec<String> {
let fizzbuzzer = FizzBuzzer {
k1: 3,
k2: 5,
labels: [
String::from("Fizz"),
String::from("Buzz"),
String::from("Fizzbuzz")
],
};
fizzbuzzer.take(n)
}
pub fn custom_buzz(n: usize, k1: u8, k2: u8) -> Vec<String> {
let fizzbuzzer = FizzBuzzer {
k1: k1,
k2: k2,
labels: [
String::from("Fizz"),
String::from("Buzz"),
String::from("Fizzbuzz")
],
};
fizzbuzzer.take(n)
}
pub struct FizzBuzzer {
pub k1: u8,
pub k2: u8,
pub labels: [String; 3],
}
impl FizzBuzzer {
pub fn take(&self, n: usize) -> Vec<String> {
let mut result = Vec::new();
if n == 0 {
return result
}
if self.k1 == 0 || self.k2 == 0 || self.k1 == 1 || self.k2 == 1 {
panic!("Give other values to k1 and k2!");
}
for x in 1..n+1 {
if (x as u8 % self.k1 == 0) && (x as u8 % self.k2 != 0) {
result.push(self.labels[0].clone());
} else if (x as u8 % self.k1 != 0) && (x as u8 % self.k2 == 0) {
result.push(self.labels[1].clone());
} else if (x as u8 % self.k1 == 0) && (x as u8 % self.k2 == 0) {
result.push(self.labels[2].clone());
} else {
result.push(x.to_string());
}
}
result
}
pub fn change_label(&mut self, index: usize, value: &String) {
if index > 2 {
panic!("Incorrect index, we have only three elements to choose from!");
}
self.labels[index] = value.to_string();
}
}
Лог от изпълнението
Compiling solution v0.1.0 (/tmp/d20201028-2816268-193amf0/solution) Finished test [unoptimized + debuginfo] target(s) in 2.10s Running target/debug/deps/solution-ebb42508826ef2b4 running 0 tests test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Running target/debug/deps/solution_test-9e954a53ed808c89 running 10 tests test solution_test::test_change_label_basic ... ok test solution_test::test_change_label_invalid ... ok test solution_test::test_classic1 ... ok test solution_test::test_classic2 ... ok test solution_test::test_coefficients1 ... ok test solution_test::test_coefficients2 ... ok test solution_test::test_coefficients_invalid ... ok test solution_test::test_struct_basic ... ok test solution_test::test_struct_invalid ... ok test solution_test::test_zeroes ... ok test result: ok. 10 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Doc-tests solution running 0 tests test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out