Refactor fill_vec to take a mutable reference to vec

This commit is contained in:
Rock070 2023-12-17 15:53:22 +08:00
parent 51775de8dc
commit 4fd794e942

View File

@ -3,21 +3,17 @@
// Execute `rustlings hint move_semantics1` or use the `hint` watch subcommand // Execute `rustlings hint move_semantics1` or use the `hint` watch subcommand
// for a hint. // for a hint.
// I AM NOT DONE
#[test] #[test]
fn main() { fn main() {
let vec0 = vec![22, 44, 66]; let mut vec0 = vec![22, 44, 66];
let vec1 = fill_vec(vec0); let vec1 = fill_vec(&mut vec0);
assert_eq!(vec1, vec![22, 44, 66, 88]); assert_eq!(vec1, vec![22, 44, 66, 88]);
} }
fn fill_vec(vec: Vec<i32>) -> Vec<i32> { fn fill_vec(vec: &mut Vec<i32>) -> Vec<i32> {
let vec = vec;
vec.push(88); vec.push(88);
vec vec.to_vec()
} }