Solve: Subset Total
Created By: Chris Taylor
/ Version: 2023.7.0
Write the recursive method, subsetTotal(int[] nums, int total, int start),
that, when called by the provided subsetTotal(int[] nums, int total) method,
returns true if the sum of any subset of values in nums is equal to total.
You may assume that nums is not null.
For this problem we're expecting only a method.Don't define a class, include modifiers like static or public, add import statements, or add code outside the method declaration.
boolean subsetTotal(int[] nums, int total, int start) {
return false;
}
boolean subsetTotal(int[] nums, int total) {
return subsetTotal(nums, total, 0);
}