前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >leetcode: 91. Decode Ways

leetcode: 91. Decode Ways

作者头像
JNingWei
发布2018-09-27 16:24:44
3110
发布2018-09-27 16:24:44
举报
文章被收录于专栏:JNing的专栏JNing的专栏

Problem

代码语言:javascript
复制
# A message containing letters from A-Z is being encoded to numbers 
# using the following mapping:
#
# 'A' -> 1
# 'B' -> 2
# ...
# 'Z' -> 26
# Given an encoded message containing digits, determine the total number of ways to decode it.
#
# For example,
# Given encoded message "12", it could be decoded as "AB" (1 2) or "L" (12).
#
# The number of ways decoding "12" is 2.

AC

代码语言:javascript
复制
class Solution():
    def numDecodings(self, s):
        if len(s) == 0 or s[0] == '0':
            return 0
        pre, pre_pre = 1, 0
        for i in range(len(s)):
            cur = 0
            if s[i] != '0':
                cur = pre
            if i > 0 and (s[i - 1] == '1' or (s[i - 1] == '2' and s[i] <= '6')):
                cur += pre_pre
            pre, pre_pre = cur, pre
        return pre


if __name__ == "__main__":
    assert list(map(lambda x: Solution().numDecodings(x), ["0", "10", "10", "103", "1032", "10323"])) == [0, 1, 1, 1, 1, 2]
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2017年11月22日,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • Problem
  • AC
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档