Skip to content

Commit 21c764b

Browse files
Add 1189 in c language
1 parent 98b6666 commit 21c764b

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

c/1189-Maximum-Number-of-Balloons.c

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
/*
2+
Given a string text, you want to use the characters of text to form as many instances of the word "balloon" as possible.
3+
4+
Space: O(1)
5+
Time: O(n)
6+
*/
7+
8+
9+
int min(int a, int b) {
10+
return a<b?a:b;
11+
}
12+
13+
int maxNumberOfBalloons(char * text){
14+
// Counter for each letter
15+
int b=0;
16+
int a=0;
17+
int l=0;
18+
int o=0;
19+
int n=0;
20+
for (int i=0; text[i]!='\0'; i++) {
21+
if (text[i]=='b') {
22+
b++;
23+
} else if (text[i]=='a') {
24+
a++;
25+
} else if (text[i]=='l') {
26+
l++;
27+
} else if (text[i]=='o') {
28+
o++;
29+
} else if (text[i]=='n') {
30+
n++;
31+
}
32+
}
33+
l /= 2; // There is 2 'l' in balloon
34+
o /= 2; // There is 2 'o' in balloon
35+
return min(b, min(a, min(l, min(o, n))));
36+
}

0 commit comments

Comments
 (0)