일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Deep learning
- LV1
- omscs
- 컴퓨터과학과
- Plotting
- EOI
- MATLAB
- 조지아텍
- 기본
- 코딩테스트
- 머신러닝
- 캐나다 영주권
- 주정부이민
- 프로그래머스
- 온라인석사
- 개발자
- LAA
- machine learning
- mpnp
- 마니토바
- 방송통신대학교
- zeros
- C++
- 선형대수
- 딥러닝
- leetcode
- 알고리즘
- cpp
- 매트랩
- 방통대
Archives
- Today
- Total
Krononberg
575. Distribute Candies.cpp 본문
class Solution {
public:
int distributeCandies(vector<int>& candyType) {
set<int>s;
for(auto i : candyType) s.insert(i);
return min(candyType.size()/2,s.size());
}
};
'개발 로그 > 알고리즘' 카테고리의 다른 글
1598. Crawler Log Folder.cpp (0) | 2021.12.15 |
---|---|
1694. Reformat Phone Number.cpp (0) | 2021.12.15 |
884. Uncommon Words from Two Sentences.cpp (0) | 2021.12.15 |
46. Permutations.cpp (0) | 2021.12.14 |
118. Pascal's Triangle.cpp (0) | 2021.12.13 |