45J42KQP7K3DMW2HZCQ53J7257MQ6V4AV2HOZLKYB5LFTBTARJHQC
H6XH45OPVRRAAP2N4AK3DCHVVSMVQ6B3MQZYKU7YVCN4O2IJGQUQC
// I AM NOT DONE
// TODO: Fill this up so that each element in the Vec `v` is // multiplied by 2.
// TODO: Fill this up so that each element in the Vec `v` is
// multiplied by 2.
*i *= 2;
let v = // TODO: declare your vector here with the macro for vectors
let v = a.to_vec(); // TODO: declare your vector here with the macro for vectors
if !basket.contains_key(&fruit) { basket.insert(fruit, 11); }
if !basket.contains_key(&fruit) {
basket.insert(fruit, 11);
}
let mut basket = // TODO: declare your hash map here.
let mut basket: HashMap<String, u32> = [(String::from("apple"), 1), (String::from("orange"), 2)] .iter().cloned().collect(); // TODO: declare your hash map here.
let mut basket: HashMap<String, u32> = [(String::from("apple"), 1), (String::from("orange"), 2)]
.iter().cloned().collect(); // TODO: declare your hash map here.