【Leetcode_easy】925. Long Pressed Name

problem

925. Long Pressed Name

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;

posted on 2019-07-26 18:34  鹅要长大  阅读(125)  评论(0)    收藏  举报

导航