From d1f7ae8597b9b2c645e96ada03d6a4b1972f6492 Mon Sep 17 00:00:00 2001 From: github-actions <${GITHUB_ACTOR}@users.noreply.github.com> Date: Sun, 1 Aug 2021 15:20:15 +0000 Subject: [PATCH] clang-format and clang-tidy fixes for cae3a923 --- backtracking/wildcard_matching.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backtracking/wildcard_matching.cpp b/backtracking/wildcard_matching.cpp index 6418e1e36..36eb2d0f5 100644 --- a/backtracking/wildcard_matching.cpp +++ b/backtracking/wildcard_matching.cpp @@ -36,7 +36,8 @@ namespace wildcard_matching { * @returns 1 if pattern matches with matching string otherwise 0 */ std::vector> dpTable(1000, std::vector(1000, -1)); -uint32_t wildcard_matching(std::string s, std::string p, uint32_t pos1, uint32_t pos2) { +uint32_t wildcard_matching(std::string s, std::string p, uint32_t pos1, + uint32_t pos2) { uint32_t n = s.length(); uint32_t m = p.length(); // matching is successfull if both strings are done