Tuesday common C++ interview problem: Calculate h-index.
Given information about research paper citations as std::vector<int>, where each element represents the number of citations for a paper, calculate the h-index: https://en.wikipedia.org/wiki/H-index.
Your solution should run in O(n).
Solve it yourself: https://compiler-explorer.com/z/5K5Wv1ha9
Solution: https://compiler-explorer.com/z/9efEYcor9