show/hide this revision's text 5 added 29 characters in body

Well, not only you have 3 loops, but this approach won't work if you have more than 3 factors :)

One possible way:

def genfactors(fdict):    
    factors = set([1])

    for factor, count in fdict.iteritems():
        for ignore in range(count):
            factors.update([n*factor for n in factors])
            # that line could also be:
            # factors.update(map(lambda e: e*factor, factors))

    return factors

factors = {2:3, 3:2, 5:1}

for factor in genfactors(factors):
    print factor

Also, you can avoid duplicating some work in the inner loop: if your working set is (1,3), and want to apply to 2^3 factors, you we were doing:

  • (1,3) U (2,6) 1,3)*2 = (1,2,3,6)
  • (1,2,3,6) U (2,4,6,12) 1,2,3,6)*2 = (1,2,3,4,6,12)
  • (1,2,3,4,6,12) U (2,4,6,8,12,24) 1,2,3,4,6,12)*2 = (1,2,3,4,6,8,12,24)

See how many duplications duplicates we have in the second sets?

But you we can do instead:

  • (1,3) + (2,6) 1,3)*2 = (1,2,3,6)
  • (1,2,3,6) + (4,12) (1,3)*2)*2 = (1,2,3,4,6,12)
  • (1,2,3,4,6,12) + (8,24) ((1,3)*2)*2)*2 = (1,2,3,4,6,8,12,24)

The solution looks even nicer without the sets:

def genfactors(fdict):
    factors = [1]

    for factor, count in fdict.iteritems():
        newfactors = factors
        for ignore in range(count):
            newfactors = map(lambda e: e*factor, newfactors)
            factors += newfactors

    return factors
show/hide this revision's text 4 added 7 characters in body; edited body; deleted 37 characters in body

Well, not only you have 3 loops, but this approach won't work if you have more than 3 factors :)

One possible way:

def genfactors(fdict):    
    factors = set([1])

    for factor, count in fdict.iteritems():
        for ignore in range(count):
            factors.update([n*factor for n in factors])
            # that line could also be:
            # factors.update(map(lambda e: e*factor, factors))

    return factors

factors = {2:3, 3:2, 5:1}

for factor in genfactors(factors):
    print factor

Also, you can avoid duplicating some work in the inner loop: if your working set is (1,3), and want to apply to 2^3 factors, you were doing:

  • (1,3) U (2,6) = (1,2,3,6)
  • (1,2,3,6) U (2,4,6,12) = (1,2,3,4,6,12)
  • (1,2,3,4,6,12) U (2,4,6,8,12,24) = (1,2,3,4,6,8,12,24)

See how many duplications we have in the second sets?

But you can do instead:

  • (1,3) U + (2,6) = (1,2,3,6)
  • (1,2,3,6) U + (4,12) = (1,2,3,4,6,12)
  • (1,2,3,4,6,12) U + (8,24) = (1,2,3,4,6,8,12,24)

The solution looks even nicer without the sets:

def genfactors(fdict):
    flist = fdict.items()

    factors = set([1])

    [1]

    for factor, count in fdict.iteritems():
        newfactors = factors
        for ignore in range(count):
            newfactors = map(lambda e: e*factor, newfactors)
            factors.update(newfactors)

    factors += newfactors

    return factors
show/hide this revision's text 3 added 841 characters in body; added 41 characters in body

Well, not only you have 3 loops, but this approach won't work if you have more than 3 factors :)

One possible way:

def genfactors(fdict):    
    factors = set([1])

    for factor, count in fdict.iteritems():
        for ignore in range(count):
            factors.update([n*factor for n in factors])
            # that line could also be:
            # factors.update(map(lambda e: e*factor, factors))

    return factors

factors = {2:3, 3:2, 5:1}

for factor in genfactors(factors):
    print factor

Also, you can avoid duplicating some work in the inner loop: if your working set is (1,3), and want to apply to 2^3 factors, you were doing:

  • (1,3) U (2,6) = (1,2,3,6)
  • (1,2,3,6) U (2,4,6,12) = (1,2,3,4,6,12)
  • (1,2,3,4,6,12) U (2,4,6,8,12,24) = (1,2,3,4,6,8,12,24)

See how many duplications we have in the second sets?

But you can do instead:

  • (1,3) U (2,6) = (1,2,3,6)
  • (1,2,3,6) U (4,12) = (1,2,3,4,6,12)
  • (1,2,3,4,6,12) U (8,24) = (1,2,3,4,6,8,12,24)

The solution looks even nicer:

def genfactors(fdict):
    flist = fdict.items()

    factors = set([1])

    for factor, count in fdict.iteritems():
        newfactors = factors
        for ignore in range(count):
            newfactors = map(lambda e: e*factor, newfactors)
            factors.update(newfactors)

    return factors
show/hide this revision's text 2 deleted 4 characters in body; deleted 47 characters in body; added 112 characters in body
show/hide this revision's text 1