def solution(k, score):
answer = []
lst = []
for i in score:
lst.append(i)
if len(lst) == k and i < min(lst):
continue
if len(lst) > k:
lst.sort()
lst.pop(0)
answer.append(min(lst))
return answer
'Programmers' 카테고리의 다른 글
[Programmers / Python 풀이] 과일 장수 (2) | 2022.12.27 |
---|---|
[Programmers / Python 풀이] 기사단원의 무기 (0) | 2022.12.26 |
[Programmers / Python 풀이] 문자열 나누기 (0) | 2022.12.22 |
[Programmers / Python 풀이] 가장 가까운 같은 글자 (0) | 2022.12.22 |
[Programmers / Python 풀이] 크기가 작은 부분 문자열 (0) | 2022.12.22 |