Original exercises

This commit is contained in:
Nidhal Messaoudi
2023-02-27 21:33:28 +01:00
parent 1acbbb6d43
commit 278a1f103b
27 changed files with 87 additions and 58 deletions

View File

@@ -2,10 +2,12 @@
// Make me compile without changing line 13 or moving line 10!
// Execute `rustlings hint move_semantics2` or use the `hint` watch subcommand for a hint.
fn main() {
let mut vec0 = Vec::new();
// I AM NOT DONE
let mut vec1 = fill_vec(&mut vec0);
fn main() {
let vec0 = Vec::new();
let mut vec1 = fill_vec(vec0);
// Do not change the following line!
println!("{} has length {} content `{:?}`", "vec0", vec0.len(), vec0);
@@ -15,12 +17,12 @@ fn main() {
println!("{} has length {} content `{:?}`", "vec1", vec1.len(), vec1);
}
fn fill_vec(vec: &mut Vec<i32>) -> Vec<i32> {
fn fill_vec(vec: Vec<i32>) -> Vec<i32> {
let mut vec = vec;
vec.push(22);
vec.push(44);
vec.push(66);
vec.to_vec()
vec
}