Update backtracking/subarray_sum.cpp

Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
Swastika Gupta 2021-07-10 13:03:04 +05:30 committed by GitHub
parent c4e0c16710
commit f37f7b7c89
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,10 +23,8 @@
*/
namespace backtracking {
/**
* @namespace Subarrays
* @brief Functions for counting subsets(only continuous subarrays) in a given
* array with a given sum Time Complexity: O(n), where n is the number of
* elements in the given array.
* @namespace subarray_sum
* @brief Functions for the [Subset sum](https://en.wikipedia.org/wiki/Subset_sum_problem) implementation
*/
namespace Subarrays {
/**