LeetCode:925.长按键入

Posted godoforange

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode:925.长按键入相关的知识,希望对你有一定的参考价值。

技术图片

思想:基本程序设计

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.长按键入的主要内容,如果未能解决你的问题,请参考以下文章

[LeetCode] 925. Long Pressed Name 长按键入的名字

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

LeetCode每日一题:925. 长按键入

925. 长按键入

算法千题案例每日一练LeetCode打卡——101.长按键入

单片机(C51)一个小程序,可以请帮忙在此程序中加入按键长按开机与长按关机功能,谢谢!!!