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