3. Longest Substring Without Repeating Characters
Given a string, find the length of the longest substring without repeating characters.
Examples:
Given "abcabcbb", the answer is "abc", which the length is 3.
Given "bbbbb", the answer is "b", with the length of 1.
Given "pwwkew", the answer is "wke", with the length of 3. Note that the answer must be a substring, "pwke" is a subsequence and not a substring.
class Solution:
def lengthOfLongestSubstring(self, s):
"""
:type s: str
:rtype: int
"""
dic=dict()
ans=0
tem=0
for i in range(len(s)):
if s[i] in dic:
tem=max(tem,dic[s[i]])
ans=max(i-tem+1,ans)
dic[s[i]]=i+1
return ans

浙公网安备 33010602011771号