0
/ 3.0
Given an int[] nums
array, return the sum of the first five elements from the array. Note that nums
could have fewer than five elements,...
Given an int[] nums
array, return the sum of the first five elements from the array. Note that nums
could have fewer than five elements, in which case return the sum of all elements
Examples:
sumFirstFive({1,1,1,1,1,1,1,1}) -> 5
sumFirstFive({2,2,2}) -> 6
Your feedback will appear here when you check your answer.