Class Solution
-
- All Implemented Interfaces:
public final class Solution2730 - Find the Longest Semi-Repetitive Substring.
Medium
You are given a 0-indexed string
sthat consists of digits from0to9.A string
tis called a semi-repetitive if there is at most one consecutive pair of the same digits insidet. For example,0010,002020,0123,2002, and54944are semi-repetitive while00101022, and1101234883are not.Return the length of the longest semi-repetitive substring inside
s.A substring is a contiguous non-empty sequence of characters within a string.
Example 1:
Input: s = "52233"
Output: 4
Explanation: The longest semi-repetitive substring is "5223", which starts at i = 0 and ends at j = 3.
Example 2:
Input: s = "5494"
Output: 4
Explanation: s is a semi-reptitive string, so the answer is 4.
Example 3:
Input: s = "1111111"
Output: 2
Explanation: The longest semi-repetitive substring is "11", which starts at i = 0 and ends at j = 1.
Constraints:
1 <= s.length <= 50'0' <= s[i] <= '9'
-
-
Constructor Summary
Constructors Constructor Description Solution()
-
Method Summary
Modifier and Type Method Description final IntegerlongestSemiRepetitiveSubstring(String s)-
-
Method Detail
-
longestSemiRepetitiveSubstring
final Integer longestSemiRepetitiveSubstring(String s)
-
-
-
-