DataScience trainee

Programmers - H-index

H-index


개요

  • 이번 포스팅은 파이썬 코딩테스트 연습문제 풀이입니다.
  • Programmers 에 공개된 예제이며 링크는 아래와 같습니다.

https://programmers.co.kr/learn/courses/30/lessons/42747#


코드

def solution(citations):
    answer = 0
    for h in range(0,max(citations)+1):
        temp = 0
        for citation in citations:
            if citation >= h and citation != 0:
                temp += 1
        if temp >= h:
            answer = h
    return answer

마치며

이번 포스팅은 Programmers에 존재하는 파이썬 코딩테스트 정렬 예제 중 레벨 2에 해당하는 문제입니다.