This commit is contained in:
2022-11-21 14:45:25 +08:00
parent 8901afccf4
commit 0872014b91
2 changed files with 29 additions and 0 deletions

View File

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