leetcode_459

全匹配子串

var repeatedSubstringPattern = function(s) {
   return /^(\w+)\1+$/.test(s)
};

你可能感兴趣的:(leetcode_459)