I don’t know why I can’t work this one in my head.
I have an array of characters in my Java code..
private String[] letters = { "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z",
"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"
};
What I need to do is loop through building strings for every possible configuration.
Example:
a
aa
ab
ac
.
.
.
aaa
aab
aac
.
.
.
.
aba
abc
and so on up to n length.
Can any one point me in the direction with this problem.
Cheers
Yet another recursive approach. I’m working in the other direction from @liwp. There’s a slight advantage that I only allocate one output ArrayList. Also, for simplicity, I just put in the numbers 0…9 in this example
will print out