From 2286f35bd4b077c3cdac516b5d127a7c1e157a87 Mon Sep 17 00:00:00 2001 From: github-actions <${GITHUB_ACTOR}@users.noreply.github.com> Date: Thu, 15 Oct 2020 19:31:52 +0000 Subject: [PATCH] clang-format and clang-tidy fixes for d8ab6b02 --- dynamic_programming/word_break.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/dynamic_programming/word_break.cpp b/dynamic_programming/word_break.cpp index 0fbc7e733..67d8747cc 100644 --- a/dynamic_programming/word_break.cpp +++ b/dynamic_programming/word_break.cpp @@ -28,12 +28,12 @@ * @author [Akshay Anand] (https://github.com/axayjha) */ +#include #include #include #include #include #include -#include /** * @namespace dynamic_programming @@ -43,7 +43,8 @@ namespace dynamic_programming { /** * @namespace word_break - * @brief Functions for [Word Break](https://leetcode.com/problems/word-break/) problem + * @brief Functions for [Word Break](https://leetcode.com/problems/word-break/) + * problem */ namespace word_break { @@ -165,7 +166,7 @@ static void test() { std::cout << dynamic_programming::word_break::wordBreak(s, wordDict) << std::endl; std::cout << "Test implementation passed!\n"; - } +} /** * @brief Main function * @returns 0 on exit