Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to find permutation of numbers in python

def permute(LIST):
    length=len(LIST)
    if length <= 1:
        yield LIST
    else:
        for n in range(0,length):
             for end in permute( LIST[:n] + LIST[n+1:] ):
                 yield [ LIST[n] ] + end

for x in permute(["3","3","4"]):
    print x
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #find #permutation #numbers #python
ADD COMMENT
Topic
Name
8+3 =