Skip to content

Commit f34d0ff

Browse files
committed
New Problem Solution -"Largest Substring Between Two Equal Characters"
1 parent a97e9ab commit f34d0ff

File tree

2 files changed

+57
-0
lines changed

2 files changed

+57
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ LeetCode
5050
|1734|[Decode XORed Permutation](https://leetcode.com/problems/decode-xored-permutation/) | [C++](./algorithms/cpp/decodeXORedPermutation/DecodeXoredPermutation.cpp)|Medium|
5151
|1733|[Minimum Number of People to Teach](https://leetcode.com/problems/minimum-number-of-people-to-teach/) | [C++](./algorithms/cpp/minimumNumberOfPeopleToTeach/MinimumNumberOfPeopleToTeach.cpp)|Medium|
5252
|1732|[Find the Highest Altitude](https://leetcode.com/problems/find-the-highest-altitude/) | [C++](./algorithms/cpp/findTheHighestAltitude/FindTheHighestAltitude.cpp)|Easy|
53+
|1624|[Largest Substring Between Two Equal Characters](https://leetcode.com/problems/largest-substring-between-two-equal-characters/) | [C++](./algorithms/cpp/largestSubstringBetweenTwoEqualCharacters/LargestSubstringBetweenTwoEqualCharacters.cpp)|Easy|
5354
|1605|[Find Valid Matrix Given Row and Column Sums](https://leetcode.com/problems/find-valid-matrix-given-row-and-column-sums/) | [C++](./algorithms/cpp/FindValidMatrixGivenRowAndColumnSums/FindValidMatrixGivenRowAndColumnSums.cpp)|Medium|
5455
|1573|[Number of Ways to Split a String](https://leetcode.com/problems/number-of-ways-to-split-a-string/) | [C++](./algorithms/cpp/NumberOfWaysToSplitString/NumberOfWaysToSplitString.cpp)|Medium|
5556
|1556|[Thousand Separator](https://leetcode.com/problems/thousand-separator/) | [C++](./algorithms/cpp/thousandSeparator/ThousandSeparator.cpp)|Easy|
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
// Source : https://leetcode.com/problems/largest-substring-between-two-equal-characters/
2+
// Author : Hao Chen
3+
// Date : 2021-03-24
4+
5+
/*****************************************************************************************************
6+
*
7+
* Given a string s, return the length of the longest substring between two equal characters,
8+
* excluding the two characters. If there is no such substring return -1.
9+
*
10+
* A substring is a contiguous sequence of characters within a string.
11+
*
12+
* Example 1:
13+
*
14+
* Input: s = "aa"
15+
* Output: 0
16+
* Explanation: The optimal substring here is an empty substring between the two 'a's.
17+
*
18+
* Example 2:
19+
*
20+
* Input: s = "abca"
21+
* Output: 2
22+
* Explanation: The optimal substring here is "bc".
23+
*
24+
* Example 3:
25+
*
26+
* Input: s = "cbzxy"
27+
* Output: -1
28+
* Explanation: There are no characters that appear twice in s.
29+
*
30+
* Example 4:
31+
*
32+
* Input: s = "cabbac"
33+
* Output: 4
34+
* Explanation: The optimal substring here is "abba". Other non-optimal substrings include "bb" and "".
35+
*
36+
* Constraints:
37+
*
38+
* 1 <= s.length <= 300
39+
* s contains only lowercase English letters.
40+
******************************************************************************************************/
41+
42+
class Solution {
43+
public:
44+
int maxLengthBetweenEqualCharacters(string s) {
45+
int pos[26]={0};
46+
47+
int longest = -1 ;
48+
for (int i=0; i<s.size(); i++){
49+
int idx = s[i] -'a';
50+
if (pos[idx] == 0) pos[idx] = i + 1;
51+
else longest = max(longest, i - pos[idx]);
52+
}
53+
54+
return longest;
55+
}
56+
};

0 commit comments

Comments
 (0)