forked from soapyigu/LeetCode-Swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DecodeWays.swift
44 lines (37 loc) · 1.05 KB
/
DecodeWays.swift
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
38
39
40
41
42
43
44
/**
* Question Link: https://leetcode.com/problems/decode-ways/
* Primary idea: Dynamic Programming, dp[i] = dp[i - 1] + dp[i - 2],
* determine if current one or two characters are number at first
* Time Complexity: O(n), Space Complexity: O(n)
*
*/
class DecodeWays {
func numDecodings(_ s: String) -> Int {
let sChars = Array(s)
var dp = Array(repeating: 0, count: s.count + 1)
dp[0] = 1
guard s.count >= 1 else {
return 0
}
for i in 1...s.count {
if String(sChars[i - 1..<i]).isValid {
dp[i] += dp[i - 1]
}
if i >= 2 && String(sChars[i - 2..<i]).isValid {
dp[i] += dp[i - 2]
}
}
return dp[s.count]
}
}
extension String {
var isValid: Bool {
if let first = first, first == "0" {
return false
}
guard let num = Int(self) else {
return false
}
return 0 < num && 26 >= num
}
}