def solution(citations):
    citations.sort()

    hIndex = 0

    for i in range(len(citations) + 1):
        if sum(citation >= i for citation in citations) >= i:
            hIndex = i
        else:
            break

    return hIndex

'Python > 프로그래머스 코딩테스트 연습' 카테고리의 다른 글

그래프 / 가장 먼 노드  (0) 2020.11.03
완전탐색 / 모의고사  (0) 2020.09.15
힙 / 더 맵게  (0) 2020.09.10
스택&큐 / 기능개발  (0) 2020.09.10
스택&큐 / 주식가격  (0) 2020.09.10

+ Recent posts