python
def solution(citations):
answer = 0
citations.sort()
cnt = 0
length = len(citations)
for a in citations:
if a <= length - cnt :
answer = a
if a >length -cnt:
if answer < length -cnt:
answer = length -cnt
cnt += 1
return answer
'알고리즘' 카테고리의 다른 글
백준 2447 "별 찍기 - 10" (0) | 2022.07.17 |
---|---|
다이나믹 프로그래밍 (DP) - 동적 계획법 (0) | 2022.07.14 |
[완전탐색] 프로그래머스 - 카펫 (0) | 2022.07.10 |
[DPS] 프로그래머스 - 단어 변환 (0) | 2022.07.09 |
[DFS] 프로그래머스 - 네트워크 (0) | 2022.07.09 |