leetcode - 408. Valid Word Abbreviation

Description

A string can be abbreviated by replacing any number of non-adjacent, non-empty substrings with their lengths. The lengths should not have leading zeros.

For example, a string such as "substitution" could be abbreviated as (but not limited to):

复制代码
"s10n" ("s ubstitutio n")
"sub4u4" ("sub stit u tion")
"12" ("substitution")
"su3i1u2on" ("su bst i t u ti on")
"substitution" (no substrings replaced)

The following are not valid abbreviations:

复制代码
"s55n" ("s ubsti tutio n", the replaced substrings are adjacent)
"s010n" (has leading zeros)
"s0ubstitution" (replaces an empty substring)

Given a string word and an abbreviation abbr, return whether the string matches the given abbreviation.

A substring is a contiguous non-empty sequence of characters within a string.

Example 1:

复制代码
Input: word = "internationalization", abbr = "i12iz4n"
Output: true
Explanation: The word "internationalization" can be abbreviated as "i12iz4n" ("i nternational iz atio n").

Example 2:

复制代码
Input: word = "apple", abbr = "a2e"
Output: false
Explanation: The word "apple" cannot be abbreviated as "a2e".

Constraints:

复制代码
1 <= word.length <= 20
word consists of only lowercase English letters.
1 <= abbr.length <= 10
abbr consists of lowercase English letters and digits.
All the integers in abbr will fit in a 32-bit integer.

Solution

Sweep the abbreviation, if it's a number, continue. If it's a character, compare.

Time complexity: o ( n ) o(n) o(n)

Space complexity: o ( 1 ) o(1) o(1)

Code

python3 复制代码
class Solution:
    def validWordAbbreviation(self, word: str, abbr: str) -> bool:
        word_index = 0
        num = 0
        for each_c in abbr:
            if each_c.isdigit():
                if num == 0 and each_c == '0':
                    return False
                num = num * 10 + int(each_c)
            else:
                word_index += num
                num = 0
                if word_index >= len(word) or word[word_index] != each_c:
                    return False
                word_index += 1
        word_index += num
        return word_index == len(word)

Version2

python3 复制代码
class Solution:
    def validWordAbbreviation(self, word: str, abbr: str) -> bool:
        # i: index for word, j: index for abbr
        i, j = 0, 0
        num = 0
        while i < len(word) and j < len(abbr):
            if word[i] == abbr[j]:
                i += 1
                j += 1
            else:
                if not abbr[j].isdigit() or abbr[j] == '0':
                    return False
                num = 0
                while j < len(abbr) and '0' <= abbr[j] <= '9':
                    num = num * 10 + int(abbr[j])
                    j += 1
                i += num
        return i == len(word) and j == len(abbr)
相关推荐
熬了夜的程序员19 分钟前
【LeetCode】69. x 的平方根
开发语言·算法·leetcode·职场和发展·动态规划
.NET修仙日记23 分钟前
2025年ASP.NETMVC面试题库全解析
面试·职场和发展·c#·asp.net·mvc·面试题·asp.net mvc
睿思达DBA_WGX40 分钟前
使用 python-docx 库操作 word 文档(3):读取word文档的内容
python·word
cehuishi952741 分钟前
excel中关联word邮件合并使用
word·excel·批量打印·邮件合并
SoberChina43 分钟前
Jasperreport 导出word 多个element重叠部分导致不显示(不支持)
pdf·word·jaspersoft·模版打印
weixin_456904271 小时前
C# 串口通信完整教程 (.NET Framework 4.0)
网络·c#·.net
缺点内向2 小时前
Java:将 Word 文档转换为密码保护的 PDF 文件
java·pdf·word
我笔记2 小时前
.net过滤器和缓存
c#
jaray2 小时前
word和wps下分别设置签名或图片背景透明色的方法
word·wps
龙仔CLL2 小时前
vue3下载图片,pdf,excle,word通用函数
pdf·vue·word