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

LeetCode:925.长按键入

时间:2019-05-15 00:24:27      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:boolean   color   exception   src   try   图片   isl   continue   catch   

技术图片

思想:基本程序设计

public boolean isLongPressedName(String name, String typed) {
        if(name.equals(typed)) return true;
        for (int i = 0, j = 0; i < name.length();) {
            try {
                if (name.charAt(i) == typed.charAt(j)) {
                    j++;
                    i++;
                    continue;
                }

                else if (name.charAt(i - 1) == typed.charAt(j)) {
                    j++;
                    continue;
                }
                else {
                    return false;
                }
            } catch (Exception e) {
                return false;
            }
        }
        return true;
    }

 

LeetCode:925.长按键入

标签:boolean   color   exception   src   try   图片   isl   continue   catch   

原文地址:https://www.cnblogs.com/godoforange/p/10865444.html

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