0.0.1 • Published 9 years ago

smart-combin v0.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

smart-combin

Get elements and generate all the possible combinations with they

Usage

npm install smart-combin
var smartCombin = require('smart-combin');

// From a total of seven elements i want all combinations of groups having 5 elements.
var allElements = [ "44", "16", "49", "53", "04", "52", "39" ];
var outputList = smartCombin.combine(allElements,5);

outputList.forEach( function (item) {
    console.log(item[0] + "," + item[1] + "," + item[2] + "," + item[3] + "," + item[4]);
});

Thanks