sorted
함수로 n을 정렬한 뒤, reverse = True
로 역순으로 배치하였다.join
함수로 list
내의 요소들을 한번에 출력하도록하였다.join
함수 안의 요소들은 str
형이여야해서 map(str)
을 사용하였다.# programmers, phase1 : 정수 내림차순으로 배치하기, python
def solution(n):
answer = list(sorted(map(int, str(n)), reverse = True))
return int("".join(map(str,answer)))
# rhdudals0659 , - , Nulltable , Song Myung Ho , - 외 70 명 코드 참고
def solution(n):
return int("".join(sorted(list(str(n)), reverse = True)))
https://programmers.co.kr/learn/courses/30/lessons/12933
github