Skip to content

Latest commit

 

History

History
39 lines (35 loc) · 1.02 KB

1624_largest_substring_between_two_equal_characters.md

File metadata and controls

39 lines (35 loc) · 1.02 KB

Given a string s, return the length of the longest substring between two equal characters, excluding the two characters. If there is no such substring return -1.

A substring is a contiguous sequence of characters within a string.

Example 1:

Input: s = "aa"
Output: 0
Explanation: The optimal substring here is an empty substring between the two 'a's.

Example 2:

Input: s = "abca"
Output: 2
Explanation: The optimal substring here is "bc".

Example 3:

Input: s = "cbzxy"
Output: -1
Explanation: There are no characters that appear twice in s.

Solution

class Solution:
    def maxLengthBetweenEqualCharacters(self, s: str) -> int:
        dic = {}
        dist = -1

        for idx, char in enumerate(s):
            if char not in dic:
                dic[char] = idx
            else:
                dist = max(dist, idx - dic[char] - 1)
        return dist