Update dynamic_programming/word_break.cpp

Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
Akshay Anand
2020-10-16 00:09:37 +05:30
committed by GitHub
parent 6107a34b96
commit 3315cba3e2

View File

@@ -36,6 +36,16 @@ using std::string;
using std::unordered_set;
using std::vector;
/**
* @namespace dynamic_programming
* @brief Dynamic programming algorithms
*/
namespace dynamic_programming {
/**
* @namespace word_break
* @brief Functions for Word Break algorithm
*/
namespace word_break {
/**
* @brief Solution class
*/