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

This commit is contained in:
2023-02-02 18:53:00 +08:00
parent 06929474ee
commit ca4fe2293d
4 changed files with 41 additions and 0 deletions

13
include/s0078_subsets.hpp Normal file
View File

@@ -0,0 +1,13 @@
#ifndef S0078_SUBSETS_HPP
#define S0078_SUBSETS_HPP
#include <vector>
using namespace std;
class S0078 {
public:
vector<vector<int>> subsets(vector<int>& nums);
};
#endif