Dynamic Programming: Knapsack - Target Sum
Consider the following Python function implementing the Target Sum problem using bottom-up DP with offset indexing. What is the returned value when calling
findTargetSumWays([1, 2], 1)?