Largest Substring Between Two Equal Characters - Array - Easy - LeetCode
💻 coding

Largest Substring Between Two Equal Characters - Array - Easy - LeetCode

1 min read 175 words
1 min read
ShareWhatsAppPost on X
  • 1The task is to find the longest substring between two equal characters in a given string.
  • 2If no such substring exists, the function should return -1.
  • 3The provided solution has a time complexity of O(n) and a space complexity of O(n).

AI-generated summary · May not capture all nuances

Key Insight
AskGif

"The task is to find the longest substring between two equal characters in a given string."

Largest Substring Between Two Equal Characters - Array - Easy - LeetCode

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. Example 4:

Input: s = "cabbac" Output: 4 Explanation: The optimal substring here is "abba". Other non-optimal substrings include "bb" and "".

Constraints:

1 <= s.length <= 300 s contains only lowercase English letters.

public class Solution {
 public int MaxLengthBetweenEqualCharacters(string s) {
 var map = new Dictionary<char,int>();
 var maxLen = -1;
 for(int i=0;i<s.Length;i++){
 if(map.ContainsKey(s[i])){
 int diff = i - map[s[i]];
 if(diff-1 > maxLen){
 maxLen = diff-1;
 }
 }
 else{
 map.Add(s[i],i);
 }
 }
 
 return maxLen;
 }
}

Time Complexity: O(n)

Space Complexity: O(n)

Enjoyed this article?

Share it with someone who'd find it useful.

ShareWhatsAppPost on X

sumitc91

Published on 18 October 2020 · 1 min read · 175 words

Part of AskGif Blog · coding

You might also like