-
Notifications
You must be signed in to change notification settings - Fork 0
/
384.js
44 lines (41 loc) · 1014 Bytes
/
384.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
42
43
44
//384. Shuffle an Array
//https://leetcode.com/problems/shuffle-an-array/
/**
* @param {number[]} nums
*/
var Solution = function(nums) {
this.orig = nums
};
/**
* Resets the array to its original configuration and return it.
* @return {number[]}
*/
Solution.prototype.reset = function() {
return this.orig
};
/**
* Returns a random shuffling of the array.
* @return {number[]}
*/
Solution.prototype.shuffle = function() {
const done = {}
const res = []
for(let i = 0; i < this.orig.length; i++) {
while(true) {
const idx = Math.floor(Math.random()*this.orig.length)
if (idx in done) {
continue
}
done[idx] = true
res.push(this.orig[idx])
break
}
}
return res
};
/**
* Your Solution object will be instantiated and called as such:
* var obj = new Solution(nums)
* var param_1 = obj.reset()
* var param_2 = obj.shuffle()
*/