언젠가는 펼쳐 볼 아카이브
[BOJ] 3009번 - 네 번째 점 본문
사용언어 : javascript - node.js
#제출 코드
const fs = require('fs');
const filePath = process.platform === 'linux' ? '/dev/stdin' : './input.txt';
const array = fs
.readFileSync(filePath)
.toString()
.trim()
.split('\n')
.map((item) =>
item
.trim()
.split(' ')
.map((item) => +item)
);
solution(array);
function solution(array) {
let x = array.map((item) => item[0]).sort((a, b) => a - b);
let y = array.map((item) => item[1]).sort((a, b) => a - b);
x = x[0] === x[1] ? x[2] : x[0];
y = y[0] === y[1] ? y[2] : y[0];
console.log(x, y);
}
'IT > Baekjoon Oline Judge' 카테고리의 다른 글
[BOJ] 9063번 - 대지 (0) | 2023.09.11 |
---|---|
[BOJ] 15894번 - 수학은 체육과목 입니다 (0) | 2023.09.06 |
[BOJ] 27323번 - 직사각형 (0) | 2023.09.06 |
[BOJ] 1085번 - 직사각형에서 탈출 (0) | 2023.09.06 |
[BOJ] 11653번 - 소인수분해 (0) | 2023.09.06 |