-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path139_word_break.swift
51 lines (44 loc) · 1.36 KB
/
139_word_break.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
45
46
47
48
49
50
51
class Solution {
func wordBreak(_ s: String, _ wordDict: [String]) -> Bool {
// Solution 1: Brute Force
// return checkWord(s, wordDict)
// Solution 2: Dynamic Programming
var dp = Array(repeating: false, count: s.count+1)
dp[s.count] = true
for i in stride(from: s.count-1, to: -1, by: -1) {
for w in wordDict {
if i + w.count <= s.count {
let subArr = Array(s)
if w == String(subArr[i...i+w.count-1]) {
dp[i] = dp[i + w.count]
}
}
if dp[i] {
break
}
}
}
return dp[0]
}
func checkWord (_ str: String, _ wrds: [String]) -> Bool {
// base case
if str == nil {
return true
}
var hasRes = false
// update
for w in wrds {
if str.hasPrefix(w) {
let arr = Array(str)
// print(arr)
if w.count != str.count {
var input = arr[w.count...str.count-1]
// print(input)
// branches
hasRes = hasRes || checkWord(String(input), wrds)
} else { return true }
}
}
return hasRes
}
}