2022-07-14 16:34:50 +01:00
|
|
|
// options1.rs
|
|
|
|
// Execute `rustlings hint options1` or use the `hint` watch subcommand for a hint.
|
2020-03-05 20:52:54 +00:00
|
|
|
|
2020-04-02 13:40:59 +01:00
|
|
|
// I AM NOT DONE
|
2020-03-05 20:52:54 +00:00
|
|
|
|
2021-04-24 11:12:49 +01:00
|
|
|
// you can modify anything EXCEPT for this function's signature
|
2020-03-05 20:52:54 +00:00
|
|
|
fn print_number(maybe_number: Option<u16>) {
|
2020-03-11 17:44:10 +00:00
|
|
|
println!("printing: {}", maybe_number.unwrap());
|
2020-03-05 20:52:54 +00:00
|
|
|
}
|
|
|
|
|
2022-07-14 16:53:27 +01:00
|
|
|
// This function returns how much icecream there is left in the fridge.
|
|
|
|
// If it's before 10PM, there's 5 pieces left. At 10PM, someone eats them
|
|
|
|
// all, so there'll be no more left :(
|
|
|
|
// TODO: Return an Option!
|
|
|
|
fn maybe_icecream(time_of_day: u16) -> Option<u16> {
|
|
|
|
// We use the 24-hour system here, so 10PM is a value of 22
|
|
|
|
???
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
2020-03-05 20:52:54 +00:00
|
|
|
|
2022-07-14 16:53:27 +01:00
|
|
|
#[test]
|
|
|
|
fn check_icecream() {
|
|
|
|
assert_eq!(maybe_icecream(10), Some(5));
|
|
|
|
assert_eq!(maybe_icecream(23), None);
|
|
|
|
assert_eq!(maybe_icecream(22), None);
|
|
|
|
}
|
2020-03-05 20:52:54 +00:00
|
|
|
|
2022-07-14 16:53:27 +01:00
|
|
|
#[test]
|
|
|
|
fn raw_value() {
|
|
|
|
// TODO: Fix this test. How do you get at the value contained in the Option?
|
|
|
|
let icecreams = maybe_icecream(12);
|
|
|
|
assert_eq!(icecreams, 5);
|
2020-03-05 20:52:54 +00:00
|
|
|
}
|
2020-03-11 17:44:10 +00:00
|
|
|
}
|