NEW tools.list_combinations_of_sum() - returns all possible tuples with len [length}, containing integers summing up to {total_sum}

This commit is contained in:
Stefan Harmuth 2023-12-18 09:12:34 +01:00
parent 1a111488ba
commit ffcc1e14c0

View File

@ -4,7 +4,7 @@ import os.path
import sys
from fishhook import hook
from functools import wraps
from typing import Any
from typing import Any, Iterator
class Cache(dict):
@ -166,6 +166,18 @@ def cache(func):
return new_func
def list_combinations_of_sum(total_sum: int, length: int = None, min_value: int = 0) -> Iterator[tuple[int]]:
if length is None:
length = total_sum
if length == 1:
yield (total_sum,)
else:
for value in range(min_value, total_sum + 1):
for permutation in list_combinations_of_sum(total_sum - value, length - 1, min_value):
yield (value,) + permutation
@hook(list)
def intersection(self, *args) -> list:
ret = set(self).intersection(*args)