summaryrefslogtreecommitdiff
path: root/progs/a825.py
blob: 24d9abec798d196ef9458cfec49755ceb02b7daf (plain)
1
2
3
4
5
6
7
def combinations_list(list1):
    if len(list1) == 0:
        return [[]]
    result = []
    for el in combinations_list(list1[1:]):
        result += [el, el+[list1[0]]]
    return result