Given a string s
, find the length of the longest substring without repeating characters.
For example:
Input: s = "abcabcbb"
Output: 3
Explanation: The answer is "abc"
, with the length of 3.
Input: s = "bbbbb"
Output: 1
Explanation: The answer is "b"
, with the length of 1.
Input: s = "pwwkew"
Output: 3
Explanation: The answer is "wke"
, with the length of 3. Notice that the answer must be a substring; "pwke"
is a subsequence and not a substring.
Input: s = ""
Output: 0
Implement an algorithm in your chosen language to efficiently determine the length of the longest substring without repeating characters in the given input string. Consider the time and space complexity of your solution. Can you optimize your approach to achieve the best possible performance, especially for very large input strings? What are the edge cases to consider, such as empty strings or strings with only one character?
Given a string s
, find the length of the longest substring without repeating characters.
For example:
Input: s = "abcabcbb"
Output: 3
Explanation: The answer is "abc"
, with the length of 3.
Input: s = "bbbbb"
Output: 1
Explanation: The answer is "b"
, with the length of 1.
Input: s = "pwwkew"
Output: 3
Explanation: The answer is "wke"
, with the length of 3. Notice that the answer must be a substring; "pwke"
is a subsequence and not a substring.
Input: s = ""
Output: 0
A naive approach would be to generate all possible substrings and check each one for repeating characters. This approach is inefficient but helps to illustrate the problem.
def length_of_longest_substring_brute_force(s):
n = len(s)
max_length = 0
for i in range(n):
for j in range(i, n):
substring = s[i:j+1]
if len(set(substring)) == len(substring):
max_length = max(max_length, len(substring))
return max_length
s = "abcabcbb"
print(length_of_longest_substring_brute_force(s)) # Output: 3
A more efficient approach is to use the sliding window technique. We maintain a window of characters and expand it as long as there are no repeating characters. If we encounter a repeating character, we shrink the window from the left until the repeating character is removed.
left
and right
, to the start of the string.right
pointer.left
pointer from the set and increment the left
pointer until the repeating character is removed.def length_of_longest_substring(s):
char_set = set()
left = 0
max_length = 0
for right in range(len(s)):
while s[right] in char_set:
char_set.remove(s[left])
left += 1
char_set.add(s[right])
max_length = max(max_length, right - left + 1)
return max_length
s = "abcabcbb"
print(length_of_longest_substring(s)) # Output: 3
s = "bbbbb"
print(length_of_longest_substring(s)) # Output: 1
s = "pwwkew"
print(length_of_longest_substring(s)) # Output: 3
s = ""
print(length_of_longest_substring(s)) # Output: 0
right
pointer iterates through the string once, and the left
pointer can move at most n
times. Therefore, the time complexity is O(n).char_set
. In the worst case, the set can contain all the characters in the string (n) or all the characters in the character set (m). Therefore, it's O(min(m,n)).Set
to track unique characters.