[백준 1427번-파이썬/Python] 소트인사이드
알고리즘 공부/BOJ백준 풀이

[백준 1427번-파이썬/Python] 소트인사이드

http://acmicpc.net/problem/1427

{코드}

print(''.join(map(str, sorted(map(int, input()), reverse=True))))
# --- #
sorted_string = sorted(map(int, input()))
answer = ''.join(map(str, sorted_string))
print(answer)

{설명}

주어진 문자열을 정수로 바꾸어 정렬한 다음 다시 문자열로 바꾼 다음 하나의 문자열로 합쳐 출력한다.