摘要: 题目 自己写的: class Solution { public: bool isLongPressedName(string name, string typed) { int slow = 0, fast = 0; while (fast < typed.size()) { if (slow < 阅读全文
posted @ 2025-01-18 13:57 hisun9 阅读(8) 评论(0) 推荐(0)
摘要: 题目 这道题不会,看了卡哥思路,卡哥提供了三种方法。 方法一:暴力解法 自己写的代码: class Solution { public: bool repeatedSubstringPattern(string s) { int n = s.size(); for (int len = 1; len 阅读全文
posted @ 2025-01-18 13:19 hisun9 阅读(21) 评论(0) 推荐(0)