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

This commit is contained in:
2023-02-03 16:42:37 +08:00
parent 3171c30f82
commit cea6c387a3
4 changed files with 48 additions and 0 deletions

View File

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