Dynamic Programming: Knapsack - Target Sum
Given the following partial memo dictionary from a top-down DP solution for Target Sum:
{(3, 2): 3, (4, 3): 5, (5, 1): 2}
and knowing the input array length is 5, which of the following input arrays and target sums could produce this memo state?
