Решение на FMI Buzz от Мирослав Фурнаджиев
Към профила на Мирослав Фурнаджиев
Резултати
- 15 точки от тестове
- 0 бонус точки
- 15 точки общо
- 10 успешни тест(а)
- 0 неуспешни тест(а)
Код
pub fn fizzbuzz(n: usize) -> Vec<String> {
let mut result = Vec::<String>::new();
for x in 1..n+1 {
if x % 3 == 0 {
if x % 5 == 0 {
result.push("Fizzbuzz".to_string());
}
else {
result.push("Fizz".to_string());
}
}
else {
if x % 5 == 0 {
result.push("Buzz".to_string());
}
else {
result.push(x.to_string());
}
}
}
result
}
pub fn custom_buzz(n: usize, k1: u8, k2: u8) -> Vec<String> {
let mut result = Vec::<String>::new();
if k1 * k2 == 0 || k1 == 1 || k2 == 1 {
panic!("this is a terrible mistake!");
}
for x in 1..n+1 {
if x % (k1 as usize) == 0 {
if x % (k2 as usize) == 0 {
result.push("Fizzbuzz".to_string());
}
else {
result.push("Fizz".to_string());
}
}
else {
if x % (k2 as usize) == 0 {
result.push("Buzz".to_string());
}
else {
result.push(x.to_string());
}
}
}
result
}
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::<String>::new();
if self.k1 * self.k2 == 0 || self.k1 == 1 || self.k2 == 1 {
panic!("this is a terrible mistake!");
}
for x in 1..n+1 {
if x % (self.k1 as usize) == 0 {
if x % (self.k2 as usize) == 0 {
result.push(self.labels[2].to_string());
}
else {
result.push(self.labels[0].to_string());
}
}
else {
if x % (self.k2 as usize) == 0 {
result.push(self.labels[1].to_string());
}
else {
result.push(x.to_string());
}
}
}
result
}
pub fn change_label(&mut self, index: usize, value: &String) {
self.labels[index] = value.to_string();
}
}
Лог от изпълнението
Compiling solution v0.1.0 (/tmp/d20201028-2816268-g8h22e/solution) Finished test [unoptimized + debuginfo] target(s) in 2.39s 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