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