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.)
Solution
public class Solution {
public boolean repeatedSubstringPattern(String str) {
if(str == null || str.length() < 2) return false;
for(int i = 2; i <= str.length(); i++) {
if(str.length() % i == 0) {
// possibly true, we need to check
int start = 0;
int stride = str.length() / i;
boolean flag = true;
while(start + stride < str.length()) {
if(str.substring(start, start + stride).equals(str.substring(start+stride, start+2*stride))) {
start += stride;
} else {
flag = false;
break;
}
}
if(flag) return true;
}
}
return false;
}
}