-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsolution.js
57 lines (45 loc) · 1.04 KB
/
solution.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
'use strict';
const readline = require('readline');
let inputString = []
let currentLine = 0;
let max = 2;
let i = 0;
const rl = readline.createInterface({
input : process.stdin,
output : process.stdout
});
rl.on('line', (el) => {
i++;
inputString.push(el.replace(/\s\s+/g, ' '));
if(i==max){
rl.close();
}
});
rl.on('close', () => {
main();
});
function readLine() {
return inputString[currentLine++];
}
/**
* Return the second largest number in the array.
* @param {Number[]} nums - An array of numbers.
* @return {Number} The second largest number in the array.
**/
function getSecondLargest(nums) {
// Complete the function
nums.sort((a,b)=>a-b);
let max = nums.pop();
for(let i = nums.length - 1; i >= 0; i--){
if(nums[i] != max){
max = nums[i];
break;
}
}
return max;
}
function main() {
const n = +(readLine());
const nums = readLine().split(' ').map(Number);
console.log(getSecondLargest(nums));
}