2024-07-04 17:23:34 -04:00
|
|
|
fn factorial(num: u64) -> u64 {
|
2024-06-28 09:31:15 -04:00
|
|
|
// TODO: 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:
|
2024-06-28 09:31:15 -04:00
|
|
|
// - imperative style loops (for/while)
|
2017-01-05 22:38:07 -05:00
|
|
|
// - 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
|
|
|
|
}
|
|
|
|
|
2024-04-17 16:46:21 -04:00
|
|
|
fn main() {
|
|
|
|
// You can optionally experiment here.
|
|
|
|
}
|
|
|
|
|
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() {
|
2024-06-28 09:31:15 -04:00
|
|
|
assert_eq!(factorial(0), 1);
|
2022-01-13 16:11:52 -05:00
|
|
|
}
|
|
|
|
|
2017-01-05 22:38:07 -05:00
|
|
|
#[test]
|
|
|
|
fn factorial_of_1() {
|
2024-06-28 09:31:15 -04:00
|
|
|
assert_eq!(factorial(1), 1);
|
2017-01-05 22:38:07 -05:00
|
|
|
}
|
|
|
|
#[test]
|
|
|
|
fn factorial_of_2() {
|
2024-06-28 09:31:15 -04:00
|
|
|
assert_eq!(factorial(2), 2);
|
2017-01-05 22:38:07 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn factorial_of_4() {
|
2024-06-28 09:31:15 -04:00
|
|
|
assert_eq!(factorial(4), 24);
|
2017-01-05 22:38:07 -05:00
|
|
|
}
|
|
|
|
}
|