From 7dd6d98ea4ccfb79a3f7e8d723578b09d085cdc1 Mon Sep 17 00:00:00 2001 From: David Leal Date: Fri, 16 Jul 2021 13:50:17 -0500 Subject: [PATCH] fix: Apply suggestions from code review --- backtracking/subarray_sum.cpp | 1 - 1 file changed, 1 deletion(-) 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;