Given a string s, check if it can be constructed by repeating a substring of itself two or more times.
Return 'true' if yes, 'false' otherwise.
Input: A single string s.
Output: Return 'true' if s is formed by repeating a substring, otherwise 'false'.
Input: abab
Output: true
Explanation: 'ab' repeated twice.Input: aba
Output: false
Explanation: No repeating substring can form 'aba'.Input: abcabcabcabc
Output: true
Explanation: 'abc' repeated 4 times.1 <= s.length <= 10^4s consists of lowercase English letters