2022-07-14 11:53:27 -04:00
|
|
|
// This function returns how much icecream there is left in the fridge.
|
2024-06-26 06:59:10 -04:00
|
|
|
// If it's before 22:00 (24-hour system), then 5 scoops are left. At 22:00,
|
|
|
|
// someone eats it all, so no icecream is left (value 0). Return `None` if
|
|
|
|
// `hour_of_day` is higher than 23.
|
|
|
|
fn maybe_icecream(hour_of_day: u16) -> Option<u16> {
|
|
|
|
// TODO: Complete the function body.
|
2022-07-14 11:53:27 -04:00
|
|
|
}
|
|
|
|
|
2024-04-17 16:46:21 -04:00
|
|
|
fn main() {
|
|
|
|
// You can optionally experiment here.
|
|
|
|
}
|
|
|
|
|
2022-07-14 11:53:27 -04:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
2020-03-05 15:52:54 -05:00
|
|
|
|
2024-06-26 06:59:10 -04:00
|
|
|
#[test]
|
|
|
|
fn raw_value() {
|
|
|
|
// TODO: Fix this test. How do you get the value contained in the
|
|
|
|
// Option?
|
|
|
|
let icecreams = maybe_icecream(12);
|
|
|
|
assert_eq!(icecreams, 5);
|
|
|
|
}
|
|
|
|
|
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));
|
2024-06-26 06:59:10 -04:00
|
|
|
assert_eq!(maybe_icecream(24), None);
|
2022-07-26 15:01:09 -04:00
|
|
|
assert_eq!(maybe_icecream(25), None);
|
2022-07-14 11:53:27 -04:00
|
|
|
}
|
2020-03-11 13:44:10 -04:00
|
|
|
}
|