830. Positions of Large Groups

830. Positions of Large Groups

题目描述

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”.

Call a group large if it has 3 or more characters. We would like the starting and ending positions of every large group.

The final answer should be in lexicographic order.

Example 1:

1
2
3
Input: "abbxxxxzzy"
Output: [[3,6]]
Explanation: "xxxx" is the single large group with starting 3 and ending positions 6.

Example 2:

1
2
3
Input: "abc"
Output: []
Explanation: We have "a","b" and "c" but no large group.

Example 3:

1
2
Input: "abcdddeeeeaabbbcd"
Output: [[3,5],[6,9],[12,14]]

Note: 1 <= S.length <= 1000

题目大意

求字符串内连续重复的字符区间。却连续重复字符数大于等于 3

解题思路

按照题目遍历字符串即可。

代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
class Solution {
func largeGroupPositions(_ S: String) -> [[Int]] {
var last = S.first!
var count = 0
var ans = [[Int]]()
for (i, char) in (S+"#").enumerated() {
if last == char {
count += 1
}else {
if count >= 3 {
ans.append([i-count, i-1])
}
last = char
count = 1
}
}
return ans
}
}
0%