From dfdad0c22466b0aad02a2016a0273546fa20ea54 Mon Sep 17 00:00:00 2001 From: github-actions <${GITHUB_ACTOR}@users.noreply.github.com> Date: Tue, 29 Jun 2021 18:50:18 +0000 Subject: [PATCH] clang-format and clang-tidy fixes for 1328571c --- backtracking/subset_sum.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backtracking/subset_sum.cpp b/backtracking/subset_sum.cpp index 4c6a4f8e0..6fe5160b7 100644 --- a/backtracking/subset_sum.cpp +++ b/backtracking/subset_sum.cpp @@ -18,8 +18,8 @@ namespace backtracking { /** * @namespace Subsets * @brief Functions for counting subsets in a given array with a given sum - * Time Complexity: O(n * 2^n), where ā€˜n’ is the number of elements in the given array. - * size of the array. + * Time Complexity: O(n * 2^n), where ā€˜n’ is the number of elements in the given + * array. size of the array. */ namespace Subsets { /**