알고리즘

[프로그래머스] 명예의 전당(1)

HHB 2023. 10. 7. 18:59
def solution(k, score):
    answer = []
    check = []
    for sc in score:
        check.append(sc)
        check = sorted(check)
        if len(check) > k:
            check.remove(check[0])
        answer.append(check[0])
    return answer
728x90
반응형
LIST

'알고리즘' 카테고리의 다른 글

[프로그래머스] 문자열 출력하기  (0) 2023.10.07
[프로그래머스] 추억 점수  (0) 2023.10.07
[프로그래머스] 카드 뭉치  (0) 2023.10.07
[프로그래머스] 폰켓몬  (0) 2023.10.07
[프로그래머스] 과일 장수  (0) 2023.10.07