https://www.acmicpc.net/problem/10989
N개의 수가 주어졌을 때, 이를 오름차순으로 정렬하는 프로그램을 작성하시오.
첫째 줄에 수의 개수 N(1 ≤ N ≤ 10,000,000)이 주어진다. 둘째 줄부터 N개의 줄에는 수가 주어진다. 이 수는 10,000보다 작거나 같은 자연수이다.
첫째 줄부터 N개의 줄에 오름차순으로 정렬한 결과를 한 줄에 하나씩 출력한다.
const filePath = process.platform === 'linux' ? '/dev/stdin' : './input.txt';
const input = require('fs')
.readFileSync(filePath)
.toString()
.trim()
.split('\n')
.map(Number);
const N = input.shift();
input.sort((a, b) => a - b);
console.log(input.join('\n'));
sort함수를 사용해서 수를 오름차순으로 정렬
정렬된값을 join함수로 줄바꿈하여 출력
이 문제는 node.js로 풀게되면 메모리 초과로 풀 수 없다고 한다.