美文网首页
3.无重复字符的最长子串(中等)

3.无重复字符的最长子串(中等)

作者: 斐_花小七 | 来源:发表于2020-06-02 15:53 被阅读0次

给定一个字符串,请你找出其中不含有重复字符的 最长子串 的长度。

class Solution:
    def lengthOfLongestSubstring(self, s: str) -> int:
        if not s:return 0
        curcode=''
        maxl=0
        for i in range(len(s)):
            if s[i] in curcode:
                if maxl<len(curcode):
                    maxl=len(curcode)
                curcode=curcode[curcode.index(s[i])+1:]
            curcode+=s[i]
        return max(maxl,len(curcode))

相关文章

网友评论

      本文标题:3.无重复字符的最长子串(中等)

      本文链接:https://www.haomeiwen.com/subject/jesjzhtx.html