Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

unique combinations in python

from itertools import combinations
[",".join(map(str, comb)) for comb in combinations(L, 3)]
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #unique #combinations #python
ADD COMMENT
Topic
Name
1+2 =