Leetcode 459 python 解題報告

AC代碼:spa class Solution(object): def repeatedSubstringPattern(self, str): """ :type str: str :rtype: bool """ for i in range(1,len(str)/2+1): if len(str)%i != 0:
相關文章
相關標籤/搜索