CodingBat groupSum Solution

public boolean groupSum(int start, int[] nums, int target) {
if(target==0) return true;
   if(start==nums.length) return false;
   if(groupSum(start+1,nums, target-nums[start])) return true;
   else return groupSum(start+1, nums, target);
}

Comments