Consecutive Characters — LeetCode 1446 Python Solution
EasyString
- Problem
- #1446
- Pattern
- Hash Map
- Reading time
- 2 min
- Source
- leetcode.com
The problem
The power of the string is the maximum length of a non-empty substring that contains only one unique character. Given a string s, return the power of s.
Example
- Input
- s = "leetcode"
- Output
- 2
- Explanation
- The substring "ee" is of length 2 with the character 'e' only.
Python solution
Python
class Solution:
def maxPower(self, s: str) -> int:
ans = t = 1
for a, b in pairwise(s):
if a == b:
t += 1
ans = max(ans, t)
else:
t = 1
return ansComplexity
| Measure | Complexity |
|---|---|
| Time | O(n), where n is the length of the string s |
| Space | O(1) auxiliary |
Pattern: Hash Map
Trade memory for time: remember what you have seen so the second pass never happens. LeetCode 1446. Consecutive Characters is filed here because the reference solution below belongs to the algorithm family this hub collects, even though its LeetCode tags point elsewhere.
The hash map guide has the Python template for the pattern and the 709 LeetCode problems that use it.
Related problems
Frequently asked questions
- How hard is LeetCode 1446. Consecutive Characters?
- LeetCode 1446. Consecutive Characters is rated Easy on LeetCode.
- What is the time complexity of LeetCode 1446. Consecutive Characters?
- The Python solution on this page runs in O(n), where n is the length of the string s.
- What is the space complexity of LeetCode 1446. Consecutive Characters?
- The Python solution on this page uses O(1) auxiliary space.
- What topics does LeetCode 1446. Consecutive Characters cover?
- LeetCode 1446. Consecutive Characters is tagged String on LeetCode.