14 lines
183 B
C++
14 lines
183 B
C++
|
#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
|