-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathalgo459.py
46 lines (33 loc) · 1.02 KB
/
algo459.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
'''
Given a non-empty string check if it can be constructed by taking a substring of it
and appending multiple copies of the substring together. You may assume the given string
consists of lowercase English letters only and its length will not exceed 10000.
Example 1:
Input: "abab"
Output: True
Explanation: It's the substring "ab" twice.
Example 2:
Input: "aba"
Output: False
Example 3:
Input: "abcabcabcabc"
Output: True
Explanation: It's the substring "abc" four times. (And the substring "abcabc" twice.)
'''
class Solution(object):
def repeatedSubstringPattern(self, s):
# s="ababc"
if s == "":
return True
n=len(s)
for i in reversed(range(int(n/2)+1)):
if i==0:
return False
if n%i==0:
list_tok=[s[x:x+i] for x in range(0,n,i)]
list_tok=set(list_tok)
if len(list_tok)==1:
return True
return False
sol=Solution()
print(sol.repeatedSubstringPattern('aba'))