feat(vec): update vec exercises

This commit is contained in:
mokou
2022-07-12 15:05:47 +02:00
parent 7af12ba9aa
commit 8e1f617d34
3 changed files with 28 additions and 6 deletions

View File

@@ -260,9 +260,15 @@ name = "vec2"
path = "exercises/collections/vec2.rs"
mode = "test"
hint = """
Hint 1: `i` is each element from the Vec as they are being iterated.
Can you try multiplying this?
Hint 2: Check the suggestion from the compiler error ;)
Hint 1: `i` is each element from the Vec as they are being iterated. Can you try
multiplying this?
Hint 2: For the first function, there's a way to directly access the numbers stored
in the Vec, using the * dereference operator. You can both access and write to the
number that way.
After you've completed both functions, decide for yourself which approach you like
better. What do you think is the more commonly used pattern under Rust developers?
"""
# MOVE SEMANTICS