def solution(numbers):
answer = list(map(str,numbers))
answer.sort(key=lambda x: x*3, reverse = True)
return str(int(''.join(answer)))
'문제풀이 > 프로그래머스' 카테고리의 다른 글
[프로그래머스][Lv2] - 구명보트(Python) (0) | 2021.10.20 |
---|---|
[프로그래머스][Lv1] - 짝수와 홀수 (Python) (0) | 2021.10.19 |
[프로그래머스][Lv2] - 124 나라(Python) (0) | 2021.10.19 |
[프로그래머스][Lv1] - 서울에서 김서방 찾기(Python) (0) | 2021.10.18 |
[프로그래머스][Lv1] - 가운데 글자 가져오기(Python) (0) | 2021.10.18 |