Skip to content

Instantly share code, notes, and snippets.

@yeco
Created May 11, 2017 15:52
Show Gist options
  • Save yeco/8e3c73bd563d39b6918d360655f93e58 to your computer and use it in GitHub Desktop.
Save yeco/8e3c73bd563d39b6918d360655f93e58 to your computer and use it in GitHub Desktop.
var combine = function(a, min) {
var fn = function(n, src, got, all) {
if (n == 0) {
if (got.length > 0) {
all[all.length] = got;
}
return;
}
for (var j = 0; j < src.length; j++) {
fn(n - 1, src.slice(j + 1), got.concat([src[j]]), all);
}
return;
}
var all = [];
for (var i = min; i < a.length; i++) {
fn(i, a, [], all);
}
all.push(a);
return all;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment