Skip to content

Commit ff34dc1

Browse files
committed
Create: 1189-maximum-number-of-balloons.ts
1 parent ff84fb3 commit ff34dc1

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
function maxNumberOfBalloons(text: string): number {
2+
let countText = {};
3+
let balloon = {};
4+
let result = text.length;
5+
6+
for (let ch of text) {
7+
countText[ch] = (countText[ch] || 0) + 1;
8+
}
9+
10+
for (let ch of 'balloon') {
11+
balloon[ch] = (balloon[ch] || 0) + 1;
12+
}
13+
14+
for (let c in balloon) {
15+
result = Math.min(result, Math.floor((countText[c] || 0) / balloon[c]));
16+
}
17+
18+
return result;
19+
}

0 commit comments

Comments
 (0)