今天爱分享给大家带来python实现无重复字符的最长子串【面试题详解】【附代码】,希望能够帮助到大家。
class Solution(object): def lengthOfLongestSubstring(self, s): res = 0;i = 0; val = "" for j in range(len(s)): if s[j] not in s[i:j]: res = max(res,j+1-i) else: i += s[i:j].index(s[j]) + 1 return res