H-index is a powerful tool for quantifying the scientific contribution of a researcher. The
H-index is defined as follows (from source - wikipedia):
"a scholar with an index of h has published h papers each of which has been cited in other papers at least h times".
In this problem, citations of published works of an author will be provided as a vector. Each element of the vector denotes the number of citations of a specific paper of the author. Calculate the h-index.
Example:
Input = [4 4 4 4]; Output = 4
Calculate the h-index score
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers2
Suggested Problems
-
Calculate the h-index (revisited)
2 Solvers
More from this Author3
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Test cases 3 and 4 are incorrect.