feat(ComputeArray): correct grammar

This commit is contained in:
davhojt 2023-07-17 02:26:22 +01:00
parent fe1aed1a2d
commit 732b31b69c
No known key found for this signature in database
GPG Key ID: 29BFE853DB7E0677
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@
Create a file `ComputeArray.java`.
Write a function `computeArray` that returns an array computed using the array of integer as parameter as followed :
Write a function `computeArray` that returns receives an array, and returns a new array with computed values.
- if the item is a multiple of 3, the item is multiplied by 5
- if the item is a multiple of 3 + 1 (e.g. 1, 4, 7, ...), the item is incremented by 7