leetcode/include/s0047_permutations_ii.hpp

15 lines
221 B
C++
Raw Permalink Normal View History

2023-02-03 09:01:25 +00:00
#ifndef S0047_PERMUTATIONS_II_HPP
#define S0047_PERMUTATIONS_II_HPP
#include <algorithm>
#include <vector>
using namespace std;
class S0047 {
public:
vector<vector<int>> permuteUnique(vector<int>& nums);
};
#endif