274. H-Index
Description
Given an array of integers citations
where citations[i]
is the number of citations a researcher received for their i^th
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
Hints/Notes
- 2025/04/10 Q3
- Leetcode solution(check the binary search solution!)
Solution
Language: C++
1 | class Solution { |