码迷,mamicode.com
首页 > 其他好文 > 详细

Leetcode-925 Long Pressed Name(长按键入)

时间:2018-10-23 20:40:47      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:public   pre   sse   end   长按   class   bsp   color   while   

 1 class Solution
 2 {
 3     public://saeed ssaaedd
 4         bool isLongPressedName(string name, string typed)
 5         {
 6             int typedEnd = 0;
 7             for(int i = 0;i < name.size();i ++)
 8             {
 9                 while(typedEnd < typed.size() && name[i]!=typed[typedEnd])
10                     typedEnd ++;
11                     
12                 if(typedEnd >= typed.size())
13                     return false;
14                 
15                 typedEnd ++;
16             }
17             return true;
18         }
19 };

 

Leetcode-925 Long Pressed Name(长按键入)

标签:public   pre   sse   end   长按   class   bsp   color   while   

原文地址:https://www.cnblogs.com/Asurudo/p/9838407.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!