Skip to content

Latest commit

 

History

History

beginnerReduceButGrow

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Beginner - Reduce but Grow

8 kyu link to kata
my solution

Given a non-empty array of integers, return the result of multiplying the values together in order. Example:

[1, 2, 3, 4] => 1 * 2 * 3 * 4 = 24
```