[PRODRAMMERS]-H-Index(ソート)
📃 H-Index
問題を解く
h번 이상 인용된 논문이 h편 이상
の条件に従って書かれている.例
citations : [0,1,2,3,3,3,3,3,3,4,10,20,30,40]
return : 4
citations : [1,6,6,6,6,6]
return : 5
citations : [0,1,2,5,6]
return : 2
コード#コード#
def solution(citations):
citations = sorted(citations)
l = len(citations)
for i in range(l):
if citations[i] >= l-i:
return l-i
return 0
Reference
この問題について([PRODRAMMERS]-H-Index(ソート)), 我々は、より多くの情報をここで見つけました https://velog.io/@zioo/PROGRAMMERS-H-Index-정렬テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol