Question: In Python 3 please! Question 4: Generalized Subset Sum (4 points) Write a function subset_sum(L, k, n) that determines if there are exactly k numbers

In Python 3 please!
Question 4: Generalized Subset Sum (4 points) Write a function subset_sum(L, k, n) that determines if there are exactly k numbers in L that sum to n. Assume L is non-empty and has no duplicate values. Hint: Use recursion. Suppose there exists k numbers in L that sum to n. If m is one of the k numbers, then there must exists k-1 numbers in L, that sum to n-m, where L is L with m removed Note: You are not allowed to use any libraries to complete this
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
