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 { /**