Easy
Given a string s, return true if it can be built by repeating a substring of it multiple times.
s
true
Input: s = "abab" Output: true
Input: s = "aba" Output: false
Input: s = "abcabcabc" Output: true