For example
Input
2,1,3
Output
1,1,1
1,1,2
1,1,3
2,1,1
2,1,2
2,1,3
|
|
If I correctly understand the question then this should work (code is in Haskell, will produce the results in a different order than the example)
Or this to get it in the same order as you gave (also just a nicer solution)
It will take me a bit to produce an answer in an "imperative" language (C, Java, etc). This is the kind of thing where functional languages shine. Okay, so in Java.
|
||||
|
|
|
a[] - is an input vector
|
|||
|
|
|
Not the most efficient way to do it, but here's a C implementation:
Then you can just loop from 0 to the product of the input (for the example above it would be |
||||
|
|