From 7b0705d84282e7fc8beaa5b07bb23401275249c6 Mon Sep 17 00:00:00 2001 From: github-actions <${GITHUB_ACTOR}@users.noreply.github.com> Date: Tue, 13 Jul 2021 03:28:25 +0000 Subject: [PATCH] clang-format and clang-tidy fixes for 047366a8 --- backtracking/subarray_sum.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backtracking/subarray_sum.cpp b/backtracking/subarray_sum.cpp index 6a2a982df..d0263c70a 100644 --- a/backtracking/subarray_sum.cpp +++ b/backtracking/subarray_sum.cpp @@ -1,6 +1,7 @@ /** * @file - * @brief [Subset-sum](https://en.wikipedia.org/wiki/Subset_sum_problem) (only continuous subsets) problem + * @brief [Subset-sum](https://en.wikipedia.org/wiki/Subset_sum_problem) (only + * continuous subsets) problem * @details We are given an array and a sum value. The algorithms find all * the subarrays of that array with sum equal to the given sum and return such * subarrays count. This approach will have \f$O(n)\f$ time complexity and