백준 11651번 좌표 정렬하기2-JS
좌표 정렬하기 문제와 매우매우 유사
- 제출한 코드
const fs = require('fs');
const filePath = process.platform === 'linux' ? '/dev/stdin' : './input.txt';
let input = fs.readFileSync(filePath).toString().trim().split('\n');
let N = Number(input.shift());
let numArr = [];
for(let i =0; i< N; i++) {
numArr.push(input[i].trim().split(' ').map(x=>+x));
}
let answer = '';
numArr.sort((a,b) => {
if(a[1] === b[1]) {return a[0] - b[0];}
else {return a[1] - b[1];}
})
numArr.forEach(e => {
answer += e[0] + ' ' + e[1] +'\n'
})
console.log(answer);
Author And Source
이 문제에 관하여(백준 11651번 좌표 정렬하기2-JS), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@yoosk5485/백준-11651번-좌표-정렬하기2-JS-g1zpxnp3저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)