본문 바로가기
프로그래머스/2단계

(Python/LV2) H-Index

by windy7271 2022. 9. 23.
728x90
반응형

문제 출처: https://school.programmers.co.kr/learn/courses/30/lessons/42747

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

풀이:


def solution(citations):
    for idx , people in enumerate(sorted(citations)):
        if people >= len(citations) - idx :
            return len(citations) - idx
    return 0

print(solution([3, 0, 6, 1, 5]))

 

 

citations.sort(reverse=True)
answer = max(map(min, enumerate(citations, start=1)))
return answer

enumerate 에 start 넣을수 있는거 방금 앎

반응형

댓글