diff --git a/backtracking/subarray_sum.cpp b/backtracking/subarray_sum.cpp index 7b5ad3e14..ff1d2b607 100644 --- a/backtracking/subarray_sum.cpp +++ b/backtracking/subarray_sum.cpp @@ -35,7 +35,6 @@ namespace subarray_sum { * @param in_arr is the input array * @returns count of the number of subsets with required sum */ - uint64_t subarray_sum(int64_t sum, const std::vector &in_arr) { int64_t nelement = in_arr.size(); int64_t count_of_subset = 0;