A React.js Application help you to find all combinations which the sum is equal to the target.
First, run the development server:
npm run dev
# or
yarn devOpen http://localhost:3000 with your browser to see the result.
Item - getting items used to find combinations
Target - the target value to match the sum of combination
Range - the maximum error value
Number of Results - the program will stop when number of results is reachedlist: [1, 2, 3]
target: 3
range: 0
result: [[1, 2], [3]]