See More

/* Given an array of ints length 3, return the sum of all the elements. */ public int sum3(int[] nums) { return nums[0] + nums[1] + nums[2]; }