铁佛 发表于 2024-8-28 10:43:38

Python | Leetcode Python题解之第377题组合总和IV

标题:
https://i-blog.csdnimg.cn/direct/87cd682044694113b7a31877191af475.png
题解:
class Solution:
    def combinationSum4(self, nums: List, target: int) -> int:
      dp = + * target
      for i in range(1, target + 1):
            for num in nums:
                if num <= i:
                  dp += dp
      
      return dp
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
页: [1]
查看完整版本: Python | Leetcode Python题解之第377题组合总和IV