https://leetcode.com/problems/h-index/submissions/?envType=study-plan-v2&envId=top-interview-150
중앙 값을 이용하자 ! ( 해당 값보다 더 큰게 , 작을거보다 1개 더 많음 )
=> 잘못 생각했음.
내림차순 정렬 후 , 일정 값을 만족하는지 반복문으로 확인!
citation.sort
return citations[citations.length/2]
=>
citation.sort(reverse)
for i in range(citations.length)
if(i>=citations[i])
return i
return citations.length
h-index 가 뭔지 자체를 몰라서 , 잘못 이해해서 헤맸음.