From 45ac3eaef76d6bcbf322207439fa90c7adde4074 Mon Sep 17 00:00:00 2001 From: github-actions <${GITHUB_ACTOR}@users.noreply.github.com> Date: Wed, 7 Jul 2021 03:13:55 +0000 Subject: [PATCH] clang-format and clang-tidy fixes for 31a1deae --- backtracking/subset_sum.cpp | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/backtracking/subset_sum.cpp b/backtracking/subset_sum.cpp index 416f57aca..a72e0b22a 100644 --- a/backtracking/subset_sum.cpp +++ b/backtracking/subset_sum.cpp @@ -1,10 +1,11 @@ /** * @file - * @brief Implementation of the [Subset Sum](https://en.wikipedia.org/wiki/Subset_sum_problem) problem. + * @brief Implementation of the [Subset + * Sum](https://en.wikipedia.org/wiki/Subset_sum_problem) problem. * @details * We are given an array and a sum value. The algorithms find all - * the subsets of that array with sum equal to the given sum and return such subsets - * count. This approach will have exponential time complexity. + * the subsets of that array with sum equal to the given sum and return such + * subsets count. This approach will have exponential time complexity. * @author [Swastika Gupta](https://github.com/swastyy) */ @@ -19,7 +20,8 @@ namespace backtracking { /** * @namespace Subsets - * @brief Functions for the [Subset Sum](https://en.wikipedia.org/wiki/Subset_sum_problem) problem. + * @brief Functions for the [Subset + * Sum](https://en.wikipedia.org/wiki/Subset_sum_problem) problem. */ namespace Subsets { /**