classSolution(object): deflengthOfLongestSubstring(self, s): """ :type s: str :rtype: int """ l = len(s) if l < 2: return l lastCharPos = {} maxStrLen = 0 currStrStart = 0 for i, ch in enumerate(s): if ch in lastCharPos and lastCharPos[ch] >= currStrStart: currStrStart = lastCharPos[ch] + 1 lastCharPos[ch] = i maxStrLen = max(maxStrLen, i - currStrStart + 1) return maxStrLen