Posts by Marcony Felipe • 13 points
1 post
-
1
votes1
answer220
viewsQ: Python function in AWS Lambda
I am needing 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:…