16 lines
263 B
C++
16 lines
263 B
C++
|
#ifndef S0039_COMBINATION_SUM_HPP
|
||
|
#define S0039_COMBINATION_SUM_HPP
|
||
|
|
||
|
#include <vector>
|
||
|
#include <algorithm>
|
||
|
#include <iterator>
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
class Solution {
|
||
|
public:
|
||
|
vector<vector<int>> combinationSum(vector<int>& candidates, int target);
|
||
|
};
|
||
|
|
||
|
#endif
|