posted 12 years ago
Hi all,
I have written a function which generates combination in a desired order. The code is somthing like this
The output of this code is and this is what is required :
My problem is all the hard coding in that function i am passing "min" "max" for range of digits and this part is ok (more or less)
Please ignore the Boolean value.
"noOfControls" is something i need to implement ie all the combination i am getting are 3 digits max (governed by number of for loop).
I need to remove this dependency i don't want to write new method every time say "if i need series upto 6 digits and write method with 6 loops"
My question is what should be the approach ?
and what are the possible ways to do it.
Thanks in advance.