leetcode/include/s0077_combinations.hpp
Sainnhe Park b4bc826729
All checks were successful
ci/woodpecker/push/test Pipeline was successful
s0077
2023-02-01 18:14:51 +08:00

16 lines
229 B
C++

#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