Releases: europeanplaice/subset_sum
Releases · europeanplaice/subset_sum
Subset Sum v0.22.0
- Change to show remainders of results.
Subset Sum v0.21.0
- Enabled to make incomplete matching. Before this version, the keys and the targets' sum must be same. But with this version, any different lists it can accept.
Subset Sum v0.20.0
- Refactored the codes for readability and performance.
Subset Sum v0.19.0
- Refactored the codes and made it run faster.
v0.18.2
- Refactored
find_subset
and the other methods. - Speed up operations.
Subset Sum v0.17.4
- Refactored
find_subset
.
Subset Sum v0.17.3
- Removed unnecessary variables.
- Improved an algorithm of combinations.
Subset Sum v0.17.2
- Changed the dynamic programming table to 1D from 2D.
Subset Sum v0.17.1
- Introduced Concurrency.
Subset Sum v0.16.2
- Fixed an iterator.