컴공생의 다이어리
[프로그래머스] 가장 큰 수 - 파이썬(Python) 본문
[프로그래머스] 가장 큰 수 - 파이썬(Python)
def solution(numbers):
numbers = list(map(str, numbers))
numbers.sort(key=lambda x: x * 3, reverse=True)
return str(int("".join(numbers)))
https://school.programmers.co.kr/learn/courses/30/lessons/42746
728x90
'Development > Algorithm & Coding Test' 카테고리의 다른 글
[파이썬, Python] 백준 16948번 : 데스 나이트 (0) | 2022.08.08 |
---|---|
[프로그래머스] 선입 선출 스케줄링 - 파이썬(Python) (0) | 2022.08.03 |
[프로그래머스] 이중우선순위큐 - 파이썬(Python) (0) | 2022.07.28 |
[프로그래머스] 올바른 괄호 - 파이썬(Python) (0) | 2022.07.27 |
[프로그래머스] 같은 숫자는 싫어 - 파이썬(Python) (0) | 2022.07.26 |
Comments