【Leetcode_easy】925. Long Pressed Name
problem
solution1:
class Solution { public: bool isLongPressedName(string name, string typed) { int i=0, m=name.size(), n=typed.size(); for(int j=0; j<n; ++j) { if(i<m && name[i]==typed[j]) i++; else if(!j && typed[j]!=typed[j-1]) return false; } return i==m; } };
参考
1. Leetcode_easy_925. Long Pressed Name;
2. discuss;
3. cnblogs;
完
各美其美,美美与共,不和他人作比较,不对他人有期待,不批判他人,不钻牛角尖。
心正意诚,做自己该做的事情,做自己喜欢做的事情,安静做一枚有思想的技术媛。
版权声明,转载请注明出处:https://www.cnblogs.com/happyamyhope/
心正意诚,做自己该做的事情,做自己喜欢做的事情,安静做一枚有思想的技术媛。
版权声明,转载请注明出处:https://www.cnblogs.com/happyamyhope/