Leetcode#274. H-Index
Problem
Given an array of integers citations
where citations[i]
is the number of citations a researcher received for their ith
paper, return the researcher’s h-index.
According to the definition of h-index on Wikipedia: The h-index is defined as the maximum value of h
such that the given researcher has published at least h
papers that have each been cited at least h
times.
Example 1:
1 | Input: citations = [3,0,6,1,5] |
Example 2:
1 | Input: citations = [1,3,1] |
Constraints:
n == citations.length
1 <= n <= 5000
0 <= citations[i] <= 1000
Solve
1 | class Solution: |
改enumerate
1 | class Solution: |
本部落格所有文章除特別聲明外,均採用 CC BY-NC-SA 4.0 許可協議。轉載請註明來自 Imisky!
評論