백준 1427번 소트인사이드-JS

yugyeongKim·2021년 11월 7일
0

백준

목록 보기
36/52
post-custom-banner

- 제출한 코드

const fs = require('fs');
const filePath = process.platform === 'linux' ? '/dev/stdin' : './input.txt';
let input = fs.readFileSync(filePath).toString().trim().split('');
let numArr = input.map(x => +x);
let answer = '';
//5:42
numArr.sort(function (a,b) {return b - a;});

numArr.forEach(e => {
  answer += e;
})
console.log(answer);

0개의 댓글