需求
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.
解决思路
问题给了我们一个字符串,问能否拆成n个重复的子串。因此既然能拆分,那么每个子串的长度不能大于原字串长度的一半,那么我们可以从源字符串长度的一半遍历到1,如果当前长度能被总长度整除,说明可以分成若干个字符串,我们将这些子字符串拼接起来看跟原字符串是否相等。 如果拆完了都不相等,返回false。
解决方法
|
|