摘要: 【0459.重复的子字符串】 class Solution { public: bool repeatedSubstringPattern(string s) { for (int i = 0; i < s.size()/2; i++) { int k = i + 1; for (int j = 0 阅读全文
posted @ 2022-11-15 18:05 跬步瑶 阅读(39) 评论(0) 推荐(0)