728x90
https://programmers.co.kr/learn/courses/30/lessons/42746#
출처 : 프로그래머스
def solution(numbers):
numbers = list(map(str,numbers)) # string 리스트로 변경
numbers.sort(key = lambda x:x*3,reverse = True)
# print(numbers)
return str(int(''.join(numbers)))
'알고리즘 문제 풀이 > 프로그래머스' 카테고리의 다른 글
[프로그래머스] 폰켓몬 python (0) | 2022.03.26 |
---|---|
[프로그래머스] 실패율 python (0) | 2022.03.25 |
[프로그래머스] 베스트앨범 python (*) (0) | 2022.03.25 |
[프로그래머스] 위장 python (0) | 2022.03.25 |
[프로그래머스] 전화번호 목록 python (0) | 2022.03.25 |