This commit is contained in:
2023-02-02 10:14:39 +08:00
parent 72eb7d55ef
commit 30d9599c39
3 changed files with 44 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#ifndef S0216_COMBINATION_SUM_III_HPP
#define S0216_COMBINATION_SUM_III_HPP
#include <vector>
using namespace std;
class S0216 {
public:
vector<vector<int>> combinationSum3(int k, int n);
};
#endif