Created
April 20, 2013 01:13
-
-
Save tylerthebuildor/5424291 to your computer and use it in GitHub Desktop.
All possible combinations of a string.
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
function combinations(str) { | |
var fn = function(active, rest, a) { | |
if (!active && !rest) | |
return; | |
if (!rest) { | |
a.push(active); | |
} else { | |
fn(active + rest[0], rest.slice(1), a); | |
fn(active, rest.slice(1), a); | |
} | |
return a; | |
} | |
return fn("", str, []); | |
} | |
/* | |
usage: combinations("abcd") | |
output: ["abcd", "abc", "abd", "ab", "acd", "ac", "ad", "a", "bcd", "bc", "bd", "b", "cd", "c", "d"] | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment