본문 바로가기
알고리즘/프로그래머스

[프로그래머스] H-Index (python)

by 김홍중 2021. 6. 23.

H-Index에 대한 이해가 부족해서 헤맸습니다.

H-Index에 대한 설명이 충분한 링크를 첨부합니다.

H-Index설명

 

def solution(citations):
    citation_count = 0
    paper_num = 1

    citations.sort()

    while True:
      for citation in citations:
        if citation >= paper_num:
          citation_count += 1 
      if citation_count <= paper_num:
        break
      paper_num += 1
      citation_count = 0
    return citation_count

댓글