lecode-3 无重复字符的最长子串

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

示例 1:

输入: “abcabcbb”
输出: 3
解释: 因为无重复字符的最长子串是 “abc”,所以其长度为 3。

示例 2:

输入: “bbbbb”
输出: 1
解释: 因为无重复字符的最长子串是 “b”,所以其长度为 1。

示例 3:

输入: “pwwkew”
输出: 3
解释: 因为无重复字符的最长子串是 “wke”,所以其长度为 3。
请注意,你的答案必须是 子串 的长度,“pwke” 是一个子序列,不是子串。

代码如下

class Solution(object):
    def longestPalindrome(self, s):
        """
        :type s: str
        :rtype: str
        """
        return self.longestPalindromecore(s)
    def longestPalindromecore(self, s):
        if len(s)<=1:
            return s
        if len(s)==2:
            if s[0]==s[1]:
                return s
            else:
                return s[1]#或者s[0]?
        max_s = self.longestPalindromecore(s[:-1])
        if len(max_s)==1:
            if s[-1]==s[-3]:
                return s[-3:]
            elif s[-2]==s[-1]:
                return s[-2:]
            else:
                return s[-1]
        if self.judge_palindrome(s[-len(max_s)-2:]):
            return s[-len(max_s)-2:]
        elif self.judge_palindrome(s[-len(max_s)-1:]):
            return s[-len(max_s)-1:]
        else:
            return max_s
    def judge_palindrome(self, sub_s):
        if len(sub_s)==1:
            return True
        for i in range(len(sub_s)//2):
            if sub_s[i]!=sub_s[-i-1]:
                return False
        return True

你可能感兴趣的:(lecode-3 无重复字符的最长子串)