Skip to content

Instantly share code, notes, and snippets.

@irae
Created October 11, 2012 11:57
Show Gist options
  • Save irae/3871861 to your computer and use it in GitHub Desktop.
Save irae/3871861 to your computer and use it in GitHub Desktop.
Permutações
var chars = "AEIO",
iterations = 3,
output = [];
function iterate(given, iterationsLeft){
var i, len = chars.length;
for(i = 0; i < len; i++) {
if(given.length < iterations-1) {
iterate(given+chars[i], iterationsLeft-1);
} else {
output.push(given+chars[i]);
}
}
}
iterate("", iterations);
console.log(output);
console.log(output.length);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment