코딩테스트
프로그래머스 H-index
이수민
2024. 5. 20. 15:54
https://postechlibrary.tistory.com/489
[h-index] 당신의 H는 무엇입니까?
h-index의 등장배경 h-index는 물리학자인 Jorge Hirsch에 의해 고안된 지표입니다. 특정 저자의 전체 논문수와 피인용수를 바탕으로 과학자(물리학자)의 연구성과, 공헌도를 하나의 수로 나타냅니다. '
postechlibrary.tistory.com
def solution(citations):
answer = 0
citations.sort(reverse = True)
c_len = len(citations)
print(citations)
for i in range(len(citations)):
h = citations[i]
if(i+1 > h):
break
answer = i + 1
return answer
문제가 이해 안 가서 테케를 계속 틀리다가 결국 자료를 보고 바로 풀었다..; 문제가 왜이런지 =_=..