문제 : 해쉬 셋 구현하기
구현 JAVA
class MyHashSet {
int[] set;
public MyHashSet() {
set = new int[1000001];
}
public void add(int key) {
set[key] = 1;
}
public void remove(int key) {
set[key] = 0;
}
public boolean contains(int key) {
return set[key] > 0 ? true : false ;
}
}
'알고리즘 > 코딩테스트' 카테고리의 다른 글
프로그래머스 단어변환 (0) | 2021.10.13 |
---|---|
프로그래머스 네트워크 (0) | 2021.10.12 |
리트코드 LeetCode Height Checker (0) | 2021.10.05 |
프로그래머스 정수 삼각형 (0) | 2021.10.04 |
프로그래머스 N으로 표현 (0) | 2021.10.04 |