Update dynamic_programming/word_break.cpp

Co-authored-by: Krishna Vedala <7001608+kvedala@users.noreply.github.com>
This commit is contained in:
Akshay Anand
2020-10-16 22:56:59 +05:30
committed by GitHub
parent 2286f35bd4
commit 05d7ca1440

View File

@@ -172,6 +172,9 @@ static void test() {
* @returns 0 on exit * @returns 0 on exit
*/ */
int main() { int main() {
test(); // call the test function :)
// the complete string // the complete string
const std::string s = "applepenapple"; const std::string s = "applepenapple";
// the dictionary to be used // the dictionary to be used