Skip to content

Commit 2532e73

Browse files
committed
0705-desgin-hashset_Solution
implemented the problem solution using boolean array.
1 parent 9ff75b2 commit 2532e73

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

.idea/misc.xml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

java/0705-desgin-hashset.java

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
class MyHashSet {
2+
boolean [] setArray;
3+
public MyHashSet() {
4+
setArray=new boolean[(int)1e6+1];
5+
}
6+
7+
public void add(int key) {
8+
setArray[key]=true;
9+
}
10+
11+
public void remove(int key) {
12+
setArray[key]=false;
13+
}
14+
15+
public boolean contains(int key) {
16+
return setArray[key];
17+
}
18+
}

0 commit comments

Comments
 (0)