forked from kelvins/algorithms-and-data-structures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfactorial.rs
35 lines (30 loc) · 825 Bytes
/
factorial.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*
Contribuidores
- Dromedario de Chapéu
Fatorial é uma função matematica que consistem em realizar
a multiplicação de todos os antecessores de um numero.
Ex: 5! = 5 * 4 * 3 * 2 * 1 = 120
*/
// A diferença desta implementação para a com recursão é
// que nesta versão o retorno, é feito utilizado interadores.
fn fatorial(valor: u128) -> u128 {
let total = match valor {
0 => 1,
// Product faz a multiplicação de todos os valores em um array
1.. => (1..valor + 1).product(),
};
return total;
}
fn main() {
println!("{}", fatorial(21));
}
#[cfg(test)]
mod test {
use super::*;
#[test]
fn teste_fatorial() {
assert_eq!(fatorial(0), 1);
assert_eq!(fatorial(1), 1);
assert_eq!(fatorial(10), 3628800);
}
}