# [Algorithm/JS] 백준 1427번 소트인사이드

🔗 문제 바로가기 (opens new window)

# Question

배열을 정렬하는 것은 쉽다. 수가 주어지면, 그 수의 각 자리수를 내림차순으로 정렬해보자.

# Input

첫째 줄에 정렬하려고 하는 수 N이 주어진다. N은 1,000,000,000보다 작거나 같은 자연수이다.

# Output

첫째 줄에 자리수를 내림차순으로 정렬한 수를 출력한다.

# Example

# Input 1

2143
1

# Output 1

4321
1

# Input 2

999998999
1

# Output 2

999999998
1

# Input 3

61423
1

# Output 3

64321
1

더 많은 예제는 상단 url에서 확인

# Solution

const input = require('fs').readFileSync('dev/stdin').toString().split('');
let result = '';

input.sort((a, b) => b - a);
input.map((num) => (result += num));
console.log(result);
1
2
3
4
5
6
Last Updated: 2022. 6. 5. 오후 3:42:39