377. Combination Sum IV
Read the full problem statement on LeetCode.
Difficulty: medium Acceptance: 55% Topics: Array, Dynamic Programming
View full problem on LeetCode Reading material
Reference solution (spoiler · python)
# Time: O(nlon + n * t), t is the value of target.
# Space: O(t)
class Solution(object):
def combinationSum4(self, nums, target):
"""
:type nums: List[int]
:type target: int
:rtype: int
"""
dp = [0] * (target+1)
dp[0] = 1
nums.sort()
for i in xrange(1, target+1):
for j in xrange(len(nums)):
if nums[j] <= i:
dp[i] += dp[i - nums[j]]
else:
break
return dp[target]
Solution from kamyu104/LeetCode-Solutions · MIT
Similar questions