274. H 指数
小于 1 分钟
274. H 指数中等
解法思路:逆序排序,遍历,比较遍历的值与下标的值
class Solution {
public int hIndex(int[] citations) {
int res = 1;
Arrays.sort(citations);
for(int i = citations.length - 1;i >= 0;i--){
if(citations[i] >= res){
res++;
}else{
return --res;
}
}
return citations.length;
}
}
Powered by Waline v2.15.5