Dynamic Programming: Knapsack - Partition to K Equal Sum Subsets
Given the following code snippet implementing DP with bitmask tabulation for partitioning
nums = [4, 3, 2, 3, 5, 2, 1] into k = 4 subsets, what is the returned result?