2018-02-22 01:09:53 -05:00
|
|
|
// iterators4.rs
|
2023-05-29 13:39:08 -04:00
|
|
|
//
|
|
|
|
// Execute `rustlings hint iterators4` or use the `hint` watch subcommand for a
|
|
|
|
// hint.
|
2018-02-22 01:09:53 -05:00
|
|
|
|
2019-11-11 07:38:24 -05:00
|
|
|
// I AM NOT DONE
|
|
|
|
|
2017-01-05 22:38:07 -05:00
|
|
|
pub fn factorial(num: u64) -> u64 {
|
2020-04-29 22:11:54 -04:00
|
|
|
// Complete this function to return the factorial of num
|
2017-01-05 22:38:07 -05:00
|
|
|
// Do not use:
|
2024-03-15 10:01:32 -04:00
|
|
|
// - early returns (using the `return` keyword explicitly)
|
2020-04-29 22:11:54 -04:00
|
|
|
// Try not to use:
|
2017-01-05 22:38:07 -05:00
|
|
|
// - imperative style loops (for, while)
|
|
|
|
// - additional variables
|
2020-04-29 22:11:54 -04:00
|
|
|
// For an extra challenge, don't use:
|
2017-01-05 22:38:07 -05:00
|
|
|
// - recursion
|
2019-11-11 10:51:38 -05:00
|
|
|
// Execute `rustlings hint iterators4` for hints.
|
2017-01-05 22:38:07 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
|
|
|
|
2022-01-13 16:11:52 -05:00
|
|
|
#[test]
|
|
|
|
fn factorial_of_0() {
|
|
|
|
assert_eq!(1, factorial(0));
|
|
|
|
}
|
|
|
|
|
2017-01-05 22:38:07 -05:00
|
|
|
#[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));
|
|
|
|
}
|
|
|
|
}
|