Array Sum (One Dimensional)
Declare and implement a function called arraySum
that receives a one-dimensional array of
Int
values (IntArray
) as its only parameter and returns the sum of the values in the array as an Int
.
If the array is null
you should return 0. Don't overthink this!