https://school.programmers.co.kr/learn/courses/30/lessons/138477
def solution(k, score):
answer = []
L = list()
for s in score:
if len(L) < k:
L.append(s)
elif min(L) < s:
L.remove(min(L))
L.append(s)
answer.append(min(L))
return answer
'Coding Test > 프로그래머스' 카테고리의 다른 글
[프로그래머스] / [Level 1] / [Python] 과일 장수 (0) | 2023.10.31 |
---|---|
[프로그래머스] / [Level 1] / [Python] 카드 뭉치 (0) | 2023.10.30 |
[프로그래머스] / [Level 1] / [Python] 추억 점수 (0) | 2023.10.30 |
[프로그래머스] / [Level 1] / [Python] 콜라 문제 (0) | 2023.10.13 |
[프로그래머스] / [Level 2] / [Python] 광물 캐기 (0) | 2023.08.25 |