Dynamic Programming: Knapsack - Ones and Zeroes (2D Knapsack)
Consider the following code snippet implementing the optimal solution for the problem. Given the input
strs = ["10", "0", "1"], m = 1, and n = 1, what is the final returned value?