[Programmers] H-Index

태환·2024년 3월 17일
0

Coding Test

목록 보기
123/151

📌 [Programmers] H-Index

📖 문제

📖 예제

📖 풀이

def solution(citations):
    HIndex = len(citations) 
    citations.sort()
    for i in citations:
        if i >= HIndex:
            return HIndex
        HIndex -= 1
    return 0

문제에 오류가 있어 보인다.

profile
연세대학교 컴퓨터과학과 석사 과정

0개의 댓글