MCPcopy Create free account
hub / github.com/codemistic/Data-Structures-and-Algorithms / main

Function main

CPP/Dynamic Programming/word_break.cpp:26–37  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

24}
25
26int 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}

Callers

nothing calls this directly

Calls 1

wordBreakFunction · 0.85

Tested by

no test coverage detected