From 759305cb6b42f18e9e0ab2d8c046aaab4ba8bf8e Mon Sep 17 00:00:00 2001 From: Swastika Gupta <64654203+Swastyy@users.noreply.github.com> Date: Thu, 1 Jul 2021 18:31:11 +0530 Subject: [PATCH] Update backtracking/subset_sum.cpp Co-authored-by: Filip Hlasek --- backtracking/subset_sum.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backtracking/subset_sum.cpp b/backtracking/subset_sum.cpp index 6fe5160b7..de5b79207 100644 --- a/backtracking/subset_sum.cpp +++ b/backtracking/subset_sum.cpp @@ -19,7 +19,7 @@ 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. + * array. */ namespace Subsets { /**