leetcode/include/s0031_next_permutation.hpp
2022-11-21 21:15:56 +08:00

15 lines
213 B
C++

#ifndef S0031_NEXT_PERMUTATION_HPP
#define S0031_NEXT_PERMUTATION_HPP
#include <vector>
#include <algorithm>
using namespace std;
class Solution {
public:
void nextPermutation(vector<int>& nums);
};
#endif