알고리즘/코딩테스트

리트코드 leetCode 705. Design HashSet

호두밥 2021. 10. 11. 16:42

문제 : 해쉬 셋 구현하기

Design HashSet - LeetCode

 

Design HashSet - LeetCode

Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.

leetcode.com

 

구현 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