정수 내림차순으로 배치하기 - Python

2023. 10. 7. 18:31공부/📝 프로그래머스

def solution(n):
    return int(''.join(sorted([i for i in str(n)], reverse=True)))


# Test Cases
print(solution(118372))

  위와 같이 풀었습니다.

 


def solution(n):
    return int(''.join(sorted(list(str(n)), reverse = True)))


# Test Cases
print(solution(118372))

  문득 반복문 없어도 되지 않았나 싶어서 다시 고쳤습니다.

 


 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr