docs(get_produects): correct grammar

This commit is contained in:
davhojt 2022-06-15 00:34:10 +03:00 committed by Dav Hojt
parent b0c3496062
commit 1b6b6bee61
1 changed files with 11 additions and 9 deletions

View File

@ -2,18 +2,16 @@
### Instructions
Create a function `get_products` that takes a vector of integers, and returns a vector of the products
of each index. For this exercise to be correct you will have to return the product of every index
Create a function named `get_products` that takes a vector of integers, and returns a vector of the products of each index.
You'll need to return the product of every index
except the current one.
Examples: [1,2,3,4]
### Example:
For `[1,2,3,4]`, we get:
- for the number `1` we get `2*3*4 = 24`
- for the number `3` we get `1*2*4 = 8`
### Notions
- [Trait iterator](https://doc.rust-lang.org/std/iter/trait.Iterator.html)
- for the number `1` we get `2*3*4 = 24`.
- for the number `3` we get `1*2*4 = 8`.
### Expected functions
@ -44,3 +42,7 @@ $ cargo run
[84, 12, 28, 21]
$
```
### Notions
- [Trait iterator](https://doc.rust-lang.org/std/iter/trait.Iterator.html)