PHP code example of hxtree / sumfinder
1. Go to this page and download the library: Download hxtree/sumfinder library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
hxtree / sumfinder example snippets
$sum_finder = new SumFinder();
$sum_finder->setSumValue(10);
$sum_finder->setIntArray(1,1,2,4,4,5,5,5,6,7,9);
/*
* output all pairs (que pairs only once (removes the duplicates but [5,5]
*/
echo $sum_finder->getComboPairs() . PHP_EOL;