clang-format and clang-tidy fixes for 047366a8

This commit is contained in:
github-actions 2021-07-13 03:28:25 +00:00
parent 047366a8b1
commit 7b0705d842

View File

@ -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