-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsolution.py
33 lines (27 loc) · 881 Bytes
/
solution.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
class Solution:
def numDecodings(self, s: str) -> int:
dp = {len(s): 1}
for i in range(len(s) - 1, -1, -1):
if s[i] == "0":
dp[i] = 0
else:
dp[i] = dp[i+1]
if (i + 1 < len(s) and (s[i] == "1" or s[i] == "2" and s[i + 1] in "0123456")):
dp[i] += dp[i+2]
return dp[0]
# recursive
# dp = {len(s): 1}
# def dfs(i):
# if i in dp:
# return dp[i]
# if s[i] == "0":
# return 0
# res = dfs(i + 1)
# if (i + 1 < len(s) and (s[i] == "1" or s[i] == "2" and s[i + 1] in "0123456")):
# res += dfs(i + 2)
# dp[i] = res
# return res
# return dfs(0)
if __name__ == '__main__':
s = "12"
print(Solution().numDecodings(s))