I need to run the following function below on AWS Lambda :
def subset_sum(numbers, target, partial=[]):
s = sum(partial)
# check if the partial sum is equals to target
if s == target:
print("sum(%s)=%s" % (partial, target))
if s >...
asked by
15.10.2017 / 05:58