0
votes
Algorithm to return all combinations of k elements from n
In Python like Andrea Ambu, but not hardcoded for choosing three.
def combinations(list, k):
"""Choose combinations of list, choosing k elements(no repeats)"""
if len(list) …
