Created
October 11, 2012 11:57
-
-
Save irae/3871861 to your computer and use it in GitHub Desktop.
Permutações
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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