본문 바로가기
프로그래머스/2단계

(Python/LV2) 가장 큰 수

by windy7271 2022. 10. 5.
728x90
반응형

문제출처: https://school.programmers.co.kr/learn/courses/30/lessons/42746

 

프로그래머스

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

programmers.co.kr

풀이:

아래 풀이는 시간초과로 다 틀리는 풀이

from itertools import permutations, product


def solution(numbers):
    res = list(permutations(numbers, len(numbers)))
    num_str = []
    for i in range(len(res)):
        num_str.append("".join(map(str,res[i])))
    return(max(num_str))

 

 

def solution(num):
    
    num = list(map(str, num))
    num.sort(key = lambda x : x*3, reverse = True)
    
    return str(int(''.join(num)))

도저히 못풀어서 참고,,

출처: https://wooaoe.tistory.com/82 [개발개발 울었다:티스토리]

3 을 곱해서 3자리수로 맞춘다 에서 놀랐다,, 

반응형

댓글