You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
849 B
43 lines
849 B
2 months ago
|
// iterators4.rs
|
||
|
//
|
||
|
// Execute `rustlings hint iterators4` or use the `hint` watch subcommand for a
|
||
|
// hint.
|
||
|
|
||
|
// I AM NOT DONE
|
||
|
|
||
|
pub fn factorial(num: u64) -> u64 {
|
||
|
// Complete this function to return the factorial of num
|
||
|
// Do not use:
|
||
|
// - return
|
||
|
// Try not to use:
|
||
|
// - imperative style loops (for, while)
|
||
|
// - additional variables
|
||
|
// For an extra challenge, don't use:
|
||
|
// - recursion
|
||
|
// Execute `rustlings hint iterators4` for hints.
|
||
|
}
|
||
|
|
||
|
#[cfg(test)]
|
||
|
mod tests {
|
||
|
use super::*;
|
||
|
|
||
|
#[test]
|
||
|
fn factorial_of_0() {
|
||
|
assert_eq!(1, factorial(0));
|
||
|
}
|
||
|
|
||
|
#[test]
|
||
|
fn factorial_of_1() {
|
||
|
assert_eq!(1, factorial(1));
|
||
|
}
|
||
|
#[test]
|
||
|
fn factorial_of_2() {
|
||
|
assert_eq!(2, factorial(2));
|
||
|
}
|
||
|
|
||
|
#[test]
|
||
|
fn factorial_of_4() {
|
||
|
assert_eq!(24, factorial(4));
|
||
|
}
|
||
|
}
|