728x90
const fs = require('fs');
const [N, ...arr] = fs.readFileSync("/dev/stdin").toString().trim().split("\n");
arr.sort((a, b) => a.length - b.length || a.localeCompare(b))
console.log(Array.from(new Set(arr)).join('\n'))
localeCompare 내장 메소드가 이렇게 유용할 줄은...!
728x90
'Development > 코딩테스트' 카테고리의 다른 글
[백준] 1436 Node.js (0) | 2022.10.28 |
---|---|
[백준] Node.js 2775 (0) | 2022.10.12 |
[백준] 2798 Node.js (1) | 2022.09.30 |
[백준] 2292 Node.js (0) | 2022.09.29 |
[백준] 1085 Node.js (0) | 2022.09.29 |
댓글