I am trying to find all possibilities of a 4 digit code using the numbers 1 thru 6. the same number can be used for any of the four (i.e. 1, 1, 1, 1).
|
|
|||
|
|
|
Here they are:
|
||
|
|
|
|
What exactly are you trying to find? If you are looking for the number of different combinations, then you can find it like so: If you are trying to print all the numbers out, you can use a number of nested loops. The algorithm for this is classed as O(n^4), since the time it takes to execute is ~4x the size of your input (in this case six, the number of possibilities). Using pseudo code, you could do something like this:
This will give you a list equivalent to that produced by John Rasch (note that this pseudo-code will not compile in any language that I know of, but you should be easily able to translate it into your language of choice). |
||||
|
|
|
6 raised to the 4th power 6 choices * 6 choices * 6 choices * 6 choices |
||
|
|
|
|
Which, just in case your calculator is broken = 1296 I don't know what the underlying requirement or application is, but allowing 0 (zero's) would almost double the number of possible combinations, to 2401 (7 x 7 x 7 x 7). |
||
|
|
|
|
Is the question really for the number of permutations? This sounds suspiciously like the number of combinations possible when throwing dice. So maybe the question is for the number of combinations with repetition. Which ... I think is (6+4-1)! / ((4!)(6-1)!) = 126. Or I might be wrong, that class was many years in the past. http://www.mathsisfun.com/combinatorics/combinations-permutations.html |
||
|
|
|
|
If you don't want the nested loops, just count from 0 to 6^4 - 1 (or 7^4 - 1 on Sunday) and convert to base 6 (or 7). |
||
|
|
