Does anyone know how to write a permutation in Java when the start and end can very per digit?
For example, for three digits from 1 to 3 it should produce the output {1,1,1} {1,1,2} {1,1,3} {1,2,1} {1,2,2} {1,2,3} {1,3,1} {1,3,2} {1,3,3} {2,1,1} {2,1,2} {2,1,3} {2,2,1} {2,2,2} {2,2,3} {2,3,1} {2,3,2} {2,3,3} {3,1,1} {3,1,2} {3,1,3} {3,2,1} {3,2,2} {3,2,3} {3,3,1} {3,3,2} {3,3,3} but the ranges for the digits could as well be from 1 to 5 for the first, from 1 to 8 for the second and from 1 to 3 for the third.