长按键入
class Solution { public: bool isLongPressedName(string name, string typed) { int indnx = 0; if(name[0] != typed[0]) return false; for(int i=0 ; i<typed.size() ;i++) { if(typed[i] == name[indnx]) indnx++; else if(typed[i] != name[indnx] && typed[i] != name[indnx-1]) return false; } if(indnx == name.size()) return true; else return false; } };