Browse Source

docs(get_produects): correct grammar

pull/1240/head
davhojt 2 years ago committed by Dav Hojt
parent
commit
1b6b6bee61
  1. 20
      subjects/get_products/README.md

20
subjects/get_products/README.md

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

Loading…
Cancel
Save