vote up 1 vote down star
1

I am trying to generate a list of all possible number combinations within a set of four numbers using all numbers from 0 through 9.

I'm getting close but the output doesn't show every possible combination starting from 0000 all the way to 9999.

Any clues as to why the following code is dropping certain combinations?

def permgen(items, n):
  if n==0: yield []
    else:
        for i in range(len(items)):
            for cc in permgen(items[:i]+items[i+1:],n-1):
                yield [items[i]]+cc

if __name__=="__main__":
    for c in permgen(['0','1','2','3','4','5','6','7','8','9'],4): print ''.join(c)
flag
1  
Can a number appear more than once? Is 1234 a different combination than 1243? – Lennart Regebro Sep 6 at 17:00
Yes, those would be two separate combinations. – alan Sep 6 at 18:04

5 Answers

vote up 3 vote down check

This line:

for cc in permgen(items[:i]+items[i+1:],n-1):

You're basically saying "get a number, than add another one different from ir, repeat n times, then return a list of these digits. That's going to give you numbers where no digit appears more than once. If you change that line to:

for cc in permgen(items,n-1):

then you get all combinations.

link|flag
vote up 3 vote down

Take a look at itertools' combinatoric generators:

>>> from itertools import combinations, permutations, product
>>> def pp(chunks):
...     print(' '.join(map(''.join, chunks)))
...
>>> pp(combinations('012', 2))
01 02 12
>>> pp(permutations('012', 2))
01 02 10 12 20 21
>>> pp(product('012', repeat=2))
00 01 02 10 11 12 20 21 22
>>> from itertools import combinations_with_replacement
>>> pp(combinations_with_replacement('012', 2))
00 01 02 11 12 22

combinations_with_replacement is available in Python 3.1 (or 2.7).

It seems that itertools.product is the most suitable for your task.

link|flag
Didn't know about this. Looks great. – alan Sep 6 at 18:05
vote up 1 vote down

Uhm, you want all the numbers from 0 to 9999 formated with leading zeroes ...

numbers = ( "%04d" % i for i in range(0,10000) )
link|flag
2  
I think he is after combinations not permutations. – Philip Fourie Sep 6 at 15:42
He says he want all the numbers from 0000 to 9999 and his code actually prints out most of them ... – THC4k Sep 6 at 16:39
He doesn't specify if a number can appear once or many times. Also he doesn't specify if 1234 and 4321 should be one combination or two. – Lennart Regebro Sep 6 at 16:59
1234 and 4321 I would consider as two separate combinations. – alan Sep 6 at 18:03
vote up 0 vote down
int ra;
for(ra=0,ra<10000;ra++) printf("%04u\n",ra);
link|flag
3  
The Python compiler will surely have a field day with THIS code...;-) – Alex Martelli Sep 6 at 17:14
vote up 11 vote down

If you have python 2.6, why not use itertools.combinations?

from itertools import combinations
combinations(range(10), 4)
link|flag
Thanks, I could do a lot with this. – alan Sep 6 at 18:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.