Given five positive integers, find the minimum and maximum values that can be calculated by summing exactly four of the five integers. Then print the respective minimum and maximum values as a single line of two space-separated long integers.
inputArray = [1, 3, 5, 7, 9]- The minimum sum is
1 + 3 + 5 + 7 = 16and the maximum sum is3 + 5 + 7 + 9 = 24. - The function prints
16 24
- Complete the miniMaxSum function in the editor below.
miniMaxSumhas the following parameter(s):inputArray: an array of5integers
- Print two space-separated integers on one line: the minimum sum and the maximum sum of
4of5elements.
- A single line of five space-separated integers.
$1 \le inputArray[i] \le 10^9$
- Print two space-separated long integers denoting the respective minimum and maximum values that can be calculated by summing exactly four of the five integers.
- The output can be greater than a 32-bit integer.
1 2 3 4 5
10 14
The numbers are 1, 2, 3, 4, and 5.
Calculate the following sums using four of the five integers:
- Sum everything except
1, the sum is2 + 3 + 4 + 5 = 14. - Sum everything except
2, the sum is1 + 3 + 4 + 5 = 13. - Sum everything except
3, the sum is1 + 2 + 4 + 5 = 12. - Sum everything except
4, the sum is1 + 2 + 3 + 5 = 11. - Sum everything except
5, the sum is1 + 2 + 3 + 4 = 10.