摘要: class Solution: def numDecodings(self, s: str) -> int: a={} if int(s[0])==0: return 0 else: a[0]=1 if len(s)==1: return a[0] if int(s[0])>2 and int(s[ 阅读全文
posted @ 2019-10-15 11:46 欣姐姐 阅读(155) 评论(0) 推荐(0) 编辑