BOJ 10989

슬기로운 FE 세상·2022년 3월 19일
0

https://www.acmicpc.net/problem/10989

// Node.js로는 메모리 초과 이슈로 통과 불가능

const input = require("fs").readFileSync("./input.txt").toString().trim().split("\n");

const num = input.shift()

let arr = Array.from(input);

arr = arr.sort((a,b) => a-b);

console.log(arr.join('\n'))

배열로 만든 후, sort를 해줬는데 Node의 고질적 문제로 메모리 초과 이슈가 나와 js로는 통과가 불가능하다.

profile
자 드가자~~

0개의 댓글

관련 채용 정보