代码拉取完成,页面将自动刷新
package com.fishercoder.solutions;
/**
* 925. Long Pressed Name
*
* Your friend is typing his name into a keyboard.
* Sometimes, when typing a character c, the key might get long pressed,
* and the character will be typed 1 or more times.
*
* You examine the typed characters of the keyboard.
* Return True if it is possible that it was your friends name,
* with some characters (possibly none) being long pressed.
*
* Example 1:
*
* Input: name = "alex", typed = "aaleex"
* Output: true
* Explanation: 'a' and 'e' in 'alex' were long pressed.
* Example 2:
*
* Input: name = "saeed", typed = "ssaaedd"
* Output: false
* Explanation: 'e' must have been pressed twice, but it wasn't in the typed output.
* Example 3:
*
* Input: name = "leelee", typed = "lleeelee"
* Output: true
* Example 4:
*
* Input: name = "laiden", typed = "laiden"
* Output: true
* Explanation: It's not necessary to long press any character.
*
* Note:
* name.length <= 1000
* typed.length <= 1000
* The characters of name and typed are lowercase letters.
* */
public class _925 {
public static class Solution1 {
public boolean isLongPressedName(String name, String typed) {
int i = 0;
for (int j = 0; i < name.length() && j < typed.length(); i++) {
if (name.charAt(i) != typed.charAt(j)) {
return false;
} else if (i < name.length() - 1 && name.charAt(i) != name.charAt(i + 1)) {
j++;
while (j < typed.length() && name.charAt(i) == typed.charAt(j)) {
j++;
}
} else {
j++;
}
}
return i == name.length();
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。