Combination Sum IV (#377)

Given an array of distinct integers nums and a target integer target, return the number of possible combinations that add up to target.

The test cases are generated so that the answer can fit in a 32-bit integer.

Note that different sequences are counted as different combinations.

Company Tags: Amazon

Core Concept: Dynamic Programming

Solve on LeetCode