Skip to content

Commit 9bc78c2

Browse files
authored
274.HIndex-排序
1 parent 5ac3a31 commit 9bc78c2

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

HIndex.java

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
class Solution {
2+
public int hIndex(int[] citations) {
3+
Arrays.sort(citations);
4+
int i = citations.length - 1;
5+
int h = 0;
6+
while (i >= 0) {
7+
if (citations[i] > h) {
8+
h++;
9+
}
10+
i--;
11+
}
12+
return h;
13+
}
14+
}

0 commit comments

Comments
 (0)