clang-format and clang-tidy fixes for 1b82d499

This commit is contained in:
github-actions
2021-07-06 03:43:00 +00:00
parent 1b82d4991b
commit b84c418427

View File

@@ -1,6 +1,8 @@
/**
* @file
* @brief We are given with an array and a sum value. The algorithms find all the subsets of that array with sum equal to given sum and return such subsets count. This approach will have exponential time complexity.
* @brief We are given with an array and a sum value. The algorithms find all
* the subsets of that array with sum equal to given sum and return such subsets
* count. This approach will have exponential time complexity.
*
* @details Subset problem (https://en.wikipedia.org/wiki/Subset_sum_problem)
* @author [Swastika Gupta](https://github.com/swastyy)