[9/12] 큰 수 만들기 (x)

이경준·2021년 9월 12일
0

코테

목록 보기
108/140
post-custom-banner

레벨2 문제 실패

코드

def solution(number, k):
    stack = []
    for num in number:
        while stack and stack[-1] < num and k > 0:
            k -= 1
            stack.pop()
            
        stack.append(num)
        
    if k != 0:
        stack = stack[:-k]
    return ''.join(stack)

피드백

  • 음... 그리디 어렵다
profile
The Show Must Go On

0개의 댓글