Dear all expert programmers,
Please look at the code below.
In the case of duplicate numbers Want each number to be a unique number, not more than 3 numbers, such as 111222.
What to do and the program does not slow down?
Thanks for help.
Please look at the code below.
Code:
const intend=9
for b=1 to intend
for c=b to intend
for d=c to intend
for e=d to intend
for f=e to intend
for g=f to intend
strtemp=strtemp & b & c & d & e & f & g & ","
next
next
next
next
next
next
What to do and the program does not slow down?
Thanks for help.