From 8df827a15c04e35e21cc9481cec39f58bf780abe Mon Sep 17 00:00:00 2001 From: Akshay Anand Date: Fri, 16 Oct 2020 00:09:47 +0530 Subject: [PATCH] Update dynamic_programming/word_break.cpp Co-authored-by: David Leal --- 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 03003fb0d..fa5048a38 100644 --- a/dynamic_programming/word_break.cpp +++ b/dynamic_programming/word_break.cpp @@ -144,6 +144,9 @@ class Solution { return check(s, strSet, 0, &dp); } }; +} // namespace word_break +} // namespace dynamic_programming + /** * @brief Main function