2018-02-22 00:09:53 -06:00
|
|
|
// option1.rs
|
2016-02-10 18:37:26 -06:00
|
|
|
// This example panics because the second time it calls `pop`, the `vec`
|
|
|
|
// is empty, so `pop` returns `None`, and `unwrap` panics if it's called
|
|
|
|
// on `None`. Handle this in a more graceful way than calling `unwrap`!
|
2019-11-11 09:51:38 -06:00
|
|
|
// Execute `rustlings hint option1` for hints :)
|
2016-02-10 18:37:26 -06:00
|
|
|
|
2019-11-11 06:38:24 -06:00
|
|
|
// I AM NOT DONE
|
|
|
|
|
2019-07-26 18:44:10 -05:00
|
|
|
pub fn pop_too_much() -> bool {
|
2016-02-10 18:37:26 -06:00
|
|
|
let mut list = vec![3];
|
|
|
|
|
|
|
|
let last = list.pop().unwrap();
|
|
|
|
println!("The last item in the list is {:?}", last);
|
|
|
|
|
|
|
|
let second_to_last = list.pop().unwrap();
|
2019-05-22 06:48:32 -05:00
|
|
|
println!(
|
|
|
|
"The second-to-last item in the list is {:?}",
|
|
|
|
second_to_last
|
|
|
|
);
|
2019-07-26 18:44:10 -05:00
|
|
|
true
|
2016-02-10 18:37:26 -06:00
|
|
|
}
|
|
|
|
|
2019-07-26 18:44:10 -05:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
2016-02-10 18:37:26 -06:00
|
|
|
|
2019-07-26 18:44:10 -05:00
|
|
|
#[test]
|
|
|
|
fn should_not_panic() {
|
2019-10-25 16:27:24 -05:00
|
|
|
assert!(pop_too_much());
|
2019-07-26 18:44:10 -05:00
|
|
|
}
|
|
|
|
}
|