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.
Stuck? You may find these lessons helpful: