| 24 | } |
| 25 | |
| 26 | int main() |
| 27 | { |
| 28 | |
| 29 | vector<string> dict = { "this", "th", "is", "famous", "Word", "break", |
| 30 | "b", "r", "e", "a", "k", "br", "bre", "brea", "ak", "problem" }; |
| 31 | |
| 32 | string word = "Wordbreakproblem"; |
| 33 | |
| 34 | wordBreak(dict, word, ""); |
| 35 | |
| 36 | return 0; |
| 37 | } |
nothing calls this directly
no test coverage detected