s0040
Some checks failed
ci/woodpecker/push/test Pipeline failed

This commit is contained in:
2023-02-02 11:33:45 +08:00
parent f572d2c9e0
commit 0d6a3a7513
3 changed files with 79 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
#ifndef S0040_COMBINATION_SUM_II_HPP
#define S0040_COMBINATION_SUM_II_HPP
#include <algorithm>
#include <vector>
using namespace std;
class S0040 {
public:
vector<vector<int>> combinationSum2(vector<int>& candidates, int target);
};
#endif