From b84c4184272a89aff0cba9eb8e26ba1fc489e20a Mon Sep 17 00:00:00 2001 From: github-actions <${GITHUB_ACTOR}@users.noreply.github.com> Date: Tue, 6 Jul 2021 03:43:00 +0000 Subject: [PATCH] clang-format and clang-tidy fixes for 1b82d499 --- backtracking/subset_sum.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/backtracking/subset_sum.cpp b/backtracking/subset_sum.cpp index b5f44a808..8557451eb 100644 --- a/backtracking/subset_sum.cpp +++ b/backtracking/subset_sum.cpp @@ -1,6 +1,8 @@ /** * @file - * @brief We are given with an array and a sum value. The algorithms find all the subsets of that array with sum equal to given sum and return such subsets count. This approach will have exponential time complexity. + * @brief We are given with an array and a sum value. The algorithms find all + * the subsets of that array with sum equal to given sum and return such subsets + * count. This approach will have exponential time complexity. * * @details Subset problem (https://en.wikipedia.org/wiki/Subset_sum_problem) * @author [Swastika Gupta](https://github.com/swastyy)