647. Palindromic Substrings——string

  題目分析:以每個字母爲中間位置,向外拓展,找到所有的迴文序列 class Solution(object): def repeatedNTimes(self, s): count = 0 for i in range(len(s)): count += 1 # 迴文長度是奇數的情況
相關文章
相關標籤/搜索