Skip to content

Commit 9114e03

Browse files
authored
Update 0380-insert-delete-getrandom-o1.js
1 parent cd74e0d commit 9114e03

File tree

1 file changed

+11
-12
lines changed

1 file changed

+11
-12
lines changed
+11-12
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,40 @@
1-
var RandomizedSet = function() {
1+
var RandomizedSet = function () {
22
this.set = new Set();
33
};
44

5-
/**
5+
/**
66
* @param {number} val
77
* @return {boolean}
88
*/
9-
RandomizedSet.prototype.insert = function(val) {
10-
if (!this.set.has(val)) {
9+
RandomizedSet.prototype.insert = function (val) {
10+
const res = !this.set.has(val);
11+
if (res) {
1112
this.set.add(val);
12-
return true;
13-
} else {
14-
return false;
1513
}
14+
return res;
1615
};
1716

18-
/**
17+
/**
1918
* @param {number} val
2019
* @return {boolean}
2120
*/
22-
RandomizedSet.prototype.remove = function(val) {
21+
RandomizedSet.prototype.remove = function (val) {
2322
return this.set.delete(val);
2423
};
2524

2625
/**
2726
* @return {number}
2827
*/
29-
RandomizedSet.prototype.getRandom = function() {
28+
RandomizedSet.prototype.getRandom = function () {
3029
const keys = Array.from(this.set.keys());
3130
const seed = Math.floor(Math.random() * keys.length);
3231
return keys[seed];
3332
};
3433

35-
/**
34+
/**
3635
* Your RandomizedSet object will be instantiated and called as such:
3736
* var obj = new RandomizedSet()
3837
* var param_1 = obj.insert(val)
3938
* var param_2 = obj.remove(val)
4039
* var param_3 = obj.getRandom()
41-
*/
40+
*/

0 commit comments

Comments
 (0)