-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path08-Mini_Max_Sum.js
72 lines (56 loc) · 1.56 KB
/
08-Mini_Max_Sum.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/**
* Created on Thu Mar 10 2022
*
* @author Carlos Páez
*/
'use strict'
// process.stdin.resume()
process.stdin.setEncoding('utf-8')
let inputString = ''
let currentLine = 0
/* Reading the input from the user and storing it in the variable `inputString` */
process.stdin.on('data', (inputStdin) => {
inputString += inputStdin
})
/* Reading the input from the user and storing it in the variable `inputString` */
process.stdin.on('end', () => {
inputString = inputString.split('\n')
main()
})
/**
* It reads a line from the input string and increments the current line counter
*/
const readLine = () => inputString[currentLine++]
/**
* Complete the `miniMaxSum` function below
*
* The functions accepts INTEGER_ARRAY arr as parameter
*/
/**
* Given an array of integers, return the sum of the smallest and largest integers in the array
* @param [arr] - an array of integers
*/
const miniMaxSum = (arr = []) => {
let arr_sort = arr.sort()
let mini = 0
let max = 0
let x = 0
let y = arr_sort.length - 1
for (let i = 0; i < arr_sort.length - 1; i++) {
if (1 <= arr_sort[i] && arr_sort[i] <= Math.pow(10, 9)) {
mini += arr_sort[x]
max += arr_sort[y]
x++
y--
}
}
console.log(`${mini} ${max}`)
}
/**
* Given an array of integers, find the minimum and maximum values, and print the respective sums of
* those values
*/
const main = () => {
const arr = readLine().replace(/\s+$/g, '').split(' ').map(arrTemp => parseInt(arrTemp, 10))
miniMaxSum(arr)
}