【Leetcode-算法-Python3】5. 最長迴文子串

1. 暴力法 思路:對每個子串判斷是否迴文數組 class Solution:app    def longestPalindrome(self, s):         """         :type s: str         :rtype: str         """         if len(s) == 1:             return s         re =
相關文章
相關標籤/搜索