Positions of Large Groups — LeetCode 830 Python Solution

EasyString
Problem
#830
Pattern
Hash Map
Reading time
2 min

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

Python
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 ans

Complexity

MeasureComplexity
TimeO(n), where n is the length of the string s
SpaceO(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.

Stuck on problems like this in a live interview?

Stealth Interview is a desktop app for macOS and Windows. It reads the problem off your screen and returns a working solution with a step-by-step explanation and its time and space complexity — invisible to screen sharing.

Get Stealth Interview