File tree 1 file changed +11
-12
lines changed
1 file changed +11
-12
lines changed Original file line number Diff line number Diff line change 1
- var RandomizedSet = function ( ) {
1
+ var RandomizedSet = function ( ) {
2
2
this . set = new Set ( ) ;
3
3
} ;
4
4
5
- /**
5
+ /**
6
6
* @param {number } val
7
7
* @return {boolean }
8
8
*/
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 ) {
11
12
this . set . add ( val ) ;
12
- return true ;
13
- } else {
14
- return false ;
15
13
}
14
+ return res ;
16
15
} ;
17
16
18
- /**
17
+ /**
19
18
* @param {number } val
20
19
* @return {boolean }
21
20
*/
22
- RandomizedSet . prototype . remove = function ( val ) {
21
+ RandomizedSet . prototype . remove = function ( val ) {
23
22
return this . set . delete ( val ) ;
24
23
} ;
25
24
26
25
/**
27
26
* @return {number }
28
27
*/
29
- RandomizedSet . prototype . getRandom = function ( ) {
28
+ RandomizedSet . prototype . getRandom = function ( ) {
30
29
const keys = Array . from ( this . set . keys ( ) ) ;
31
30
const seed = Math . floor ( Math . random ( ) * keys . length ) ;
32
31
return keys [ seed ] ;
33
32
} ;
34
33
35
- /**
34
+ /**
36
35
* Your RandomizedSet object will be instantiated and called as such:
37
36
* var obj = new RandomizedSet()
38
37
* var param_1 = obj.insert(val)
39
38
* var param_2 = obj.remove(val)
40
39
* var param_3 = obj.getRandom()
41
- */
40
+ */
You can’t perform that action at this time.
0 commit comments