forked from ignacio-chiazzo/Algorithms-Leetcode-Javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPermutations.js
41 lines (35 loc) · 745 Bytes
/
Permutations.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
Permutations
https://leetcode.com/problems/permutations/
Given a collection of distinct integers, return all possible permutations.
Example:
Input: [1,2,3]
Output:
[
[1,2,3],
[1,3,2],
[2,1,3],
[2,3,1],
[3,1,2],
[3,2,1]
]
*/
var permute = function (nums) {
return permuteAux(nums, 0, [], new Set());
};
var permuteAux = function (nums, pos, currentSol, set) {
if (pos === nums.length) {
return [currentSol];
}
var ret = [];
for (var i = 0; i < nums.length; i++) {
if (!set.has(nums[i])) {
set.add(nums[i]);
var sol = permuteAux(nums, pos + 1, currentSol.concat(nums[i]), set);
ret = [...ret, ...sol];
set.delete(nums[i]);
}
}
return ret;
};
module.exports.permute = permute;