Longest Substring Without Repeating Characters - LeetCode
Longest Substring Without Repeating Characters - LeetCode
Python Auto
3. Longest Substring Without Repeating 1 class Solution(object):
Characters 2
3
def lengthOfLongestSubstring(self, s):
"""
4 :type s: str
Medium Topics Companies Hint
5 :rtype: int
6 """
Given a string s , find the length of the longest substring without repeating characters. 7
Example 1:
Input: s = "abcabcbb"
Output: 3
Explanation: The answer is "abc", with the length of 3.
Example 2:
Input: s = "bbbbb"
Output: 1
Explanation: The answer is "b", with the length of 1.
Example 3: Saved