2022-07-14 11:34:50 -04:00
|
|
|
// options1.rs
|
2023-05-29 13:39:08 -04:00
|
|
|
//
|
|
|
|
// Execute `rustlings hint options1` or use the `hint` watch subcommand for a
|
|
|
|
// hint.
|
2020-03-05 15:52:54 -05:00
|
|
|
|
2022-07-14 11:53:27 -04:00
|
|
|
// This function returns how much icecream there is left in the fridge.
|
2024-03-18 19:47:15 -04:00
|
|
|
// If it's before 10PM, there's 5 scoops left. At 10PM, someone eats it
|
2022-07-14 11:53:27 -04:00
|
|
|
// all, so there'll be no more left :(
|
|
|
|
fn maybe_icecream(time_of_day: u16) -> Option<u16> {
|
2023-05-29 13:39:08 -04:00
|
|
|
// We use the 24-hour system here, so 10PM is a value of 22 and 12AM is a
|
2024-03-18 19:47:15 -04:00
|
|
|
// value of 0. The Option output should gracefully handle cases where
|
2023-05-29 13:39:08 -04:00
|
|
|
// time_of_day > 23.
|
2022-11-24 14:39:54 -05:00
|
|
|
// TODO: Complete the function body - remember to return an Option!
|
2022-07-14 11:53:27 -04:00
|
|
|
???
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
2020-03-05 15:52:54 -05:00
|
|
|
|
2022-07-14 11:53:27 -04:00
|
|
|
#[test]
|
|
|
|
fn check_icecream() {
|
2024-03-18 19:47:15 -04:00
|
|
|
assert_eq!(maybe_icecream(0), Some(5));
|
2022-08-15 04:05:50 -04:00
|
|
|
assert_eq!(maybe_icecream(9), Some(5));
|
2024-03-18 19:47:15 -04:00
|
|
|
assert_eq!(maybe_icecream(18), Some(5));
|
2022-07-26 15:01:09 -04:00
|
|
|
assert_eq!(maybe_icecream(22), Some(0));
|
2024-03-18 19:47:15 -04:00
|
|
|
assert_eq!(maybe_icecream(23), Some(0));
|
2022-07-26 15:01:09 -04:00
|
|
|
assert_eq!(maybe_icecream(25), None);
|
2022-07-14 11:53:27 -04:00
|
|
|
}
|
2020-03-05 15:52:54 -05:00
|
|
|
|
2022-07-14 11:53:27 -04:00
|
|
|
#[test]
|
|
|
|
fn raw_value() {
|
2023-05-29 13:39:08 -04:00
|
|
|
// TODO: Fix this test. How do you get at the value contained in the
|
|
|
|
// Option?
|
2022-07-14 11:53:27 -04:00
|
|
|
let icecreams = maybe_icecream(12);
|
2022-08-17 00:51:17 -04:00
|
|
|
assert_eq!(icecreams, 5);
|
2020-03-05 15:52:54 -05:00
|
|
|
}
|
2020-03-11 13:44:10 -04:00
|
|
|
}
|