문제 set 자료구조를 구현하여 Insert, Delete, GetRandom 연산을 O(1)으로 수행할 수 있게 하라는 문제 https://leetcode.com/problems/insert-delete-getrandom-o1 LeetCode - The World's Leading Online Programming Learning Platform 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 문제 풀이 기본적으로 set 자료형에는 add라는 insert 함수와 remove, ..