575. Distribute Candies
https://leetcode.com/problems/distribute-candies/ Distribute Candies - 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 난이도 : easy 문제 앨리스가 먹을 수 있는 캔디의 종류의 최대값을 구하여라. 해당 문제는 이중 반복문으로 O(N^2) 의 시간으로도 풀수 있다. 여러 접근 방법이 있는데 필자는 unordered_map 을 사용하여 중복되는 요소를 제거하고 어레이의 크기 / 2 두 가지 수를 구하여 더 ..
Developer/LEETCODE
2021. 9. 8. 18:48