leetcode91. 解码方法
程序员文章站
2022-07-05 12:35:02
...
一条包含字母 A-Z 的消息通过以下方式进行了编码:
‘A’ -> 1
‘B’ -> 2
…
‘Z’ -> 26
示例 1:
输入: “12”
输出: 2
解释: 它可以解码为 “AB”(1 2)或者 “L”(12)。
示例 2:
输入: “226”
输出: 3
解释: 它可以解码为 “BZ” (2 26), “VF” (22 6), 或者 “BBF” (2 2 6) 。
约束版的leetcode70. 爬楼梯,注意和前一个数字不能组成10到26之间的数时不能爬两层:
class Solution:
def numDecodings(self, s: str) -> int:
dp = [1] * (len(s)+1)
for i in range(len(s)):
dp[i+1] = 0 if s[i] == '0' else dp[i]
if i > 0 and 10 <= int(s[i-1:i+1]) <= 26:
dp[i+1] += dp[i-1] # 如果能走两步到这
return dp[-1]
下一篇: 双缓冲法解决重绘和闪屏问题