From c972c6e7a525a7b5e768d71a9fb1d712c3673696 Mon Sep 17 00:00:00 2001 From: davhojt Date: Tue, 24 May 2022 17:31:04 +0300 Subject: [PATCH] docs(arrays): correct grammar --- subjects/arrays/README.md | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/subjects/arrays/README.md b/subjects/arrays/README.md index e4ed5064..9b31de8c 100644 --- a/subjects/arrays/README.md +++ b/subjects/arrays/README.md @@ -2,16 +2,9 @@ ### Instructions -Define a **function** called `thirtytwo_tens` that returns an array with 32 positions filled with only the value `10`: +Define a **function** named `thirtytwo_tens` that returns an array with 32 positions filled with only the value `10`, so that `[10, 10, 10, ... 10].len()` is equal to 32. -- [10, 10, 10, ... 10].len() - = 32 - -Write a **function** that takes an array of i32 and returns the sum of the elements (make it work with the main). - -### Notions - -- [arrays](https://doc.rust-lang.org/std/primitive.array.html) +Write a **function** that takes an array of `i32` and returns the sum of the elements (make it work with the main). ### Expected functions @@ -30,7 +23,7 @@ pub fn thirtytwo_tens() -> [i32; 32] { Here is a program to test your function. -There are things missing in this program. Use the output and the other information that you have available to retrieve what is missing. +There are things missing in this program. Use the output and the other information to figure out what is missing. ```rust use arrays::{sum, thirtytwo_tens}; @@ -61,3 +54,7 @@ The Sum of the elements in [5, 5, 5, 5, 5, 5, 5, 5, 5, 5] = 50 Array size 32 with only 10's in it [10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10] $ ``` + +### Notions + +- [arrays](https://doc.rust-lang.org/std/primitive.array.html)