h-index 프로그래머스

매일 공부(ML)·2022년 5월 21일
0

이어드림

목록 보기
51/146

문제 설명

def solution(citations):
    citations.sort(reverse=True)
    answer = max(map(min,enumerate(citations,start=1)))
    return answer
profile
성장을 도울 아카이빙 블로그

0개의 댓글