s0077
All checks were successful
ci/woodpecker/push/test Pipeline was successful

This commit is contained in:
2023-02-01 18:09:19 +08:00
parent a5dd365883
commit b4bc826729
5 changed files with 94 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#ifndef S0077_COMBINATIONS_HPP
#define S0077_COMBINATIONS_HPP
#include <algorithm>
#include <unordered_map>
#include <vector>
using namespace std;
class S0077 {
public:
vector<vector<int>> combine(int n, int k);
};
#endif