leetcode/include/s0077_combinations.hpp

14 lines
183 B
C++
Raw Normal View History

2023-02-01 10:09:19 +00:00
#ifndef S0077_COMBINATIONS_HPP
#define S0077_COMBINATIONS_HPP
#include <vector>
using namespace std;
class S0077 {
public:
vector<vector<int>> combine(int n, int k);
};
#endif