首页
学习
活动
专区
圈层
工具
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

数据结构算法操作试题(C++/Python)—— 组合总和

数据结构算法操作试题(C++/Python):数据结构算法操作试题(C++/Python)——目录


1. 题目

leetcode 链接:https://leetcode-cn.com/problems/combination-sum/

2. 解答

python: 58ms, 10.8 mb

代码语言:javascript
复制
class Solution(object):
    def combinationSum(self, candidates, target):
        """
        :type candidates: List[int]
        :type target: int
        :rtype: List[List[int]]
        """
        res = []
        candidates.sort()
        def dfs(remain,path):
            if not remain:
                res.append(path)
                return
            for i in candidates:
                if i>remain:
                    break
                elif path and i<path[-1]:
                    continue
                else:
                    dfs(remain-i,path+[i])
        dfs(target,[])
        return res

其他方法看 leetcode 链接 评论区~

举报
领券