Skip to content

Commit 7061247

Browse files
authored
feat: add typescript solution to lc problem: No.0274.H-Index (doocs#524)
1 parent 3c94460 commit 7061247

File tree

3 files changed

+67
-0
lines changed

3 files changed

+67
-0
lines changed

solution/0200-0299/0274.H-Index/README.md

+24
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,30 @@ class Solution {
8585
}
8686
```
8787

88+
### **TypeScript**
89+
90+
```ts
91+
function hIndex(citations: number[]): number {
92+
let n = citations.length;
93+
let cnt = new Array(n + 1).fill(0);
94+
for (let c of citations) {
95+
if ( c <= n) {
96+
++cnt[c];
97+
} else {
98+
++cnt[n];
99+
}
100+
}
101+
let sum = 0;
102+
for (let i = n; i > -1; --i) {
103+
sum += cnt[i];
104+
if (sum >= i) {
105+
return i;
106+
}
107+
}
108+
return 0;
109+
};
110+
```
111+
88112
### **Go**
89113

90114
利用二分查找,定位符合条件的最大值

solution/0200-0299/0274.H-Index/README_EN.md

+24
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,30 @@ class Solution {
8989
}
9090
```
9191

92+
### **TypeScript**
93+
94+
```ts
95+
function hIndex(citations: number[]): number {
96+
let n = citations.length;
97+
let cnt = new Array(n + 1).fill(0);
98+
for (let c of citations) {
99+
if ( c <= n) {
100+
++cnt[c];
101+
} else {
102+
++cnt[n];
103+
}
104+
}
105+
let sum = 0;
106+
for (let i = n; i > -1; --i) {
107+
sum += cnt[i];
108+
if (sum >= i) {
109+
return i;
110+
}
111+
}
112+
return 0;
113+
};
114+
```
115+
92116
### **Go**
93117

94118
Use binary search to locate the maximum value that meets the conditions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
function hIndex(citations: number[]): number {
2+
let n = citations.length;
3+
let cnt = new Array(n + 1).fill(0);
4+
for (let c of citations) {
5+
if ( c <= n) {
6+
++cnt[c];
7+
} else {
8+
++cnt[n];
9+
}
10+
}
11+
let sum = 0;
12+
for (let i = n; i > -1; --i) {
13+
sum += cnt[i];
14+
if (sum >= i) {
15+
return i;
16+
}
17+
}
18+
return 0;
19+
};

0 commit comments

Comments
 (0)