-
Notifications
You must be signed in to change notification settings - Fork 20
/
DecodeWays.py
37 lines (32 loc) · 979 Bytes
/
DecodeWays.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
34
35
36
37
# 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.
#
# Python, Python3 all accepted.
class DecodeWays:
def numDecodings(self, s):
"""
:type s: str
:rtype: int
"""
if s is None or len(s) == 0 or s[0] == '0':
return 0
ints = [0 for i in range(len(s) + 1)]
ints[0] = 1
for i in range(1, len(ints)):
if s[i - 1] == '0':
ints[i] = 0
else:
ints[i] = ints[i - 1]
if i > 1 and (s[i - 2] == '1' or (s[i - 2] == '2' and ord(s[i - 1]) <= ord('6'))):
ints[i] += ints[i - 2]
return ints[len(s)]