码迷,mamicode.com
首页 > 其他好文 > 详细

3. 无重复字符的最长子串

时间:2019-01-18 13:34:57      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:col   code   def   str   div   方法   turn   range   int   

3. 无重复字符的最长子串

 

方法一

class Solution(object):
    def lengthOfLongestSubstring(self, s):
        """
        :type s: str
        :rtype: int
        """
        str_dic = {}
        i, ans = 0, 0
        for j in range(len(s)):
            if s[j] in str_dic:
                i = max(str_dic[s[j]], i)
            ans = max(ans, j-i+1)
            str_dic[s[j]] = j + 1
        return ans

 

3. 无重复字符的最长子串

标签:col   code   def   str   div   方法   turn   range   int   

原文地址:https://www.cnblogs.com/xiao-xue-di/p/10287135.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!