Skip to content

Commit 763aedb

Browse files
committed
Create 0380-insert-delete-getrandom-o1.kt
1 parent 96a7dc1 commit 763aedb

File tree

1 file changed

+53
-0
lines changed

1 file changed

+53
-0
lines changed
+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
/*
2+
* Containing the logic behind the operations, but a cleaner Kotlin solution is provided below.
3+
* Here implement some of the logic of the functions ourselves, as in the video, to have this solution compatible with the video solution.
4+
*/
5+
class RandomizedSet() {
6+
7+
val hs = HashSet<Int>()
8+
9+
fun insert(`val`: Int): Boolean {
10+
if(hs.contains(`val`))
11+
return false
12+
else {
13+
hs.add(`val`)
14+
return true
15+
}
16+
}
17+
18+
fun remove(`val`: Int): Boolean {
19+
if(hs.contains(`val`)){
20+
hs.remove(`val`)
21+
return true
22+
}else
23+
return false
24+
}
25+
26+
fun getRandom(): Int {
27+
return hs.random()
28+
}
29+
30+
}
31+
32+
/*
33+
* Cleaner Kotlin solution. add() and remove()
34+
*/
35+
class RandomizedSet() {
36+
37+
val hs = HashSet<Int>()
38+
39+
fun insert(`val`: Int) = hs.add(`val`)
40+
41+
fun remove(`val`: Int) = hs.remove(`val`)
42+
43+
fun getRandom() = hs.random()
44+
45+
}
46+
47+
/**
48+
* Your RandomizedSet object will be instantiated and called as such:
49+
* var obj = RandomizedSet()
50+
* var param_1 = obj.insert(`val`)
51+
* var param_2 = obj.remove(`val`)
52+
* var param_3 = obj.getRandom()
53+
*/

0 commit comments

Comments
 (0)