Positions of Large Groups — LeetCode 830 Python Solution
- Problem
- #830
- Pattern
- Hash Map
- Reading time
- 2 min
- Source
- leetcode.com
The problem
In a string s of lowercase letters, these letters form consecutive groups of the same character. For example, a string like s = "abbxxxxzyy" has the groups "a", "bb", "xxxx", "z", and "yy".
Example
- Input
- s = "abbxxxxzzy"
- Output
- [[3,6]]
- Explanation
- "xxxx" is the only large group with start index 3 and end index 6.
Python solution
class Solution:
def largeGroupPositions(self, s: str) -> List[List[int]]:
i, n = 0, len(s)
ans = []
while i < n:
j = i
while j < n and s[j] == s[i]:
j += 1
if j - i >= 3:
ans.append([i, j - 1])
i = j
return ansComplexity
| Measure | Complexity |
|---|---|
| Time | O(n), where n is the length of the string s |
| Space | O(1) to O(n) auxiliary |
Pattern: Hash Map
Trade memory for time: remember what you have seen so the second pass never happens. LeetCode 830. Positions of Large Groups 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 830. Positions of Large Groups?
- LeetCode 830. Positions of Large Groups is rated Easy on LeetCode.
- What topics does LeetCode 830. Positions of Large Groups cover?
- LeetCode 830. Positions of Large Groups is tagged String on LeetCode.