From 05d7ca14402794f9614194bab3cc528807c85c1c Mon Sep 17 00:00:00 2001 From: Akshay Anand Date: Fri, 16 Oct 2020 22:56:59 +0530 Subject: [PATCH] Update dynamic_programming/word_break.cpp Co-authored-by: Krishna Vedala <7001608+kvedala@users.noreply.github.com> --- dynamic_programming/word_break.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dynamic_programming/word_break.cpp b/dynamic_programming/word_break.cpp index 67d8747cc..4dd01d8dd 100644 --- a/dynamic_programming/word_break.cpp +++ b/dynamic_programming/word_break.cpp @@ -172,6 +172,9 @@ static void test() { * @returns 0 on exit */ int main() { + + test(); // call the test function :) + // the complete string const std::string s = "applepenapple"; // the dictionary to be used