1181. 단어 정렬 - node.js / javascript

윤상준·2022년 2월 13일
0
post-thumbnail

문제

내 코드

let fs = require("fs");
let input = fs.readFileSync("/dev/stdin").toString().trim().split("\n");

const N = Number(input.shift());

input.sort((a, b) => {
  return a.length - b.length || a.localeCompare(b);
});

const set = new Set(input);

console.log(Array.from(set).join("\n"));

깃허브 링크

https://github.com/highjoon/Algorithm/blob/master/BOJ/1181.js

profile
하고싶은건 많은데 시간이 없다!

0개의 댓글