-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsolution.cpp
43 lines (42 loc) · 914 Bytes
/
solution.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/**
* 333 / 333 test cases passed.
* Runtime: 4 ms
* Memory Usage: 6.6 MB
*/
class Solution {
public:
int maxPower(string s) {
int ans = 1, length = 1;
for(int l = 0, r = 1; r < s.size(); ++r) {
if (s[r] == s[l]) {
++ length;
} else {
ans = max(ans, length);
l = r;
length = 1;
}
}
ans = max(ans, length);
return ans;
}
};
/**
* 333 / 333 test cases passed.
* Runtime: 4 ms
* Memory Usage: 6.6 MB
*/
class Solution2 {
public:
int maxPower(string s) {
int ans = 1, length = 1;
for(int r = 1; r < s.size(); ++r) {
if (s[r] == s[r - 1]) {
++ length;
ans = max(ans, length);
} else {
length = 1;
}
}
return ans;
}
};