Posts [알고리즘] 백준 1427 - 소트인사이드
Post
Cancel

[알고리즘] 백준 1427 - 소트인사이드


문제

1427 - 소트인사이드


접근

간단한 문제이다.

입력 받은 숫자를 한 글자씩 분리한 다음 정렬해주면 된다.

코드

  • 파이썬 코드
1
2
3
4
n = list(str(int(input())))
n.sort(reverse=True)
print(int(''.join(n)))


This post is licensed under CC BY 4.0 by the author.