Given an integer array with all positive numbers and no duplicates, find the number of possible combinations that add up to a positive integer target. Example: nums = [, , ] target = The possible combination ways are: (, , , ) (, , ) (, , ) (, ) (, ,…