Expand description
This is a module for dynamic programming.
Structs
Functions
- Finds subsets sum of a target value. It can accept negative values.
- Finds the integers from two vectors that sum to the same value. This method assumes that the two vectors have Many-to-Many relationships. Each integer of the
keysvector corresponds to the multiple integers of thetargetsvector. With this method, we can find combinations of the integers.