언젠가는 펼쳐 볼 아카이브
[BOJ] 10818번 - 최소, 최대 본문
사용언어 : javascript - node.js
#제출 코드
const fs = require('fs');
const filePath = process.platform === 'linux' ? '/dev/stdin' : './input.txt';
let input = fs.readFileSync(filePath).toString().split('\n');
const size = +input[0];
const numArray = input[1].split(' ').map((item) => +item);
solution(size, numArray);
function solution(size, numArray) {
let max = -1000000;
let min = 1000000;
for (let i = 0; i < size; i++) {
if (numArray[i] < min) {
min = numArray[i];
} else if (numArray[i] > max) {
max = numArray[i];
}
}
console.log(`${min} ${max}`);
}
'IT > Baekjoon Oline Judge' 카테고리의 다른 글
[BOJ] 10810번 - 공 넣기 (0) | 2023.08.16 |
---|---|
[BOJ] 2562번 - 최댓값 (0) | 2023.08.16 |
[BOJ] 10807번 - 개수 세기 (0) | 2023.08.16 |
[BOJ] 10951번 - A+B - 4 (0) | 2023.08.16 |
[BOJ] 10952번 - A+B - 5 (0) | 2023.08.16 |