1446. 连续字符
为保证权益,题目请参考 1446. 连续字符(From LeetCode).
解决方案1
Python
python
# 1446. 连续字符
# https://leetcode-cn.com/problems/consecutive-characters/
################################################################################
class Solution:
def maxPower(self, s: str) -> int:
anscou = 1
a = s[0]
acou = 1
for i in range(1, len(s)):
if a == s[i]:
acou += 1
if acou > anscou:
anscou = acou
else:
a = s[i]
acou = 1
return anscou
################################################################################
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23