leetcode/include/s0046_permutations.hpp

14 lines
188 B
C++
Raw Normal View History

2023-02-03 08:42:37 +00:00
#ifndef S0046_PERMUTATIONS_HPP
#define S0046_PERMUTATIONS_HPP
#include <vector>
using namespace std;
class S0046 {
public:
vector<vector<int>> permute(vector<int>& nums);
};
#endif