leetcode-39-組合總和

class Solution { public:     vector<vector<int>> res = {};     void helper(vector<int>& candidates, int target, int begin, vector<int> curres){         if (target == 0) res.push_back(curres);         
相關文章
相關標籤/搜索