Well, let's start at the beginning, by the origin, the beginning of the beginning.
I have this program:
from itertools import combinations
lis = [1,2,3,4,5,6,7,8,9]
for i in (3, len(lis)):
for comb in combinations(lis, i):
if sum...
asked by
03.01.2018 / 00:02