From 5b5fc0a0cdfc8088ce843799d98e09d23f813d84 Mon Sep 17 00:00:00 2001 From: David Leal Date: Mon, 12 Jul 2021 20:19:36 -0500 Subject: [PATCH] Update backtracking/subarray_sum.cpp --- backtracking/subarray_sum.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backtracking/subarray_sum.cpp b/backtracking/subarray_sum.cpp index ecbf857f8..d64070f6d 100644 --- a/backtracking/subarray_sum.cpp +++ b/backtracking/subarray_sum.cpp @@ -29,7 +29,7 @@ namespace backtracking { */ namespace subarraySum { /** - * @brief The main function implements count of subarrays + * @brief The main function that implements the count of the subarrays * @param sum is the required sum of any subarrays * @param in_arr is the input array * @returns count of the number of subsets with required sum