Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- topic modeling
- hugging face
- semantic network
- QANet
- Min-Max 알고리즘
- 임베딩
- GCP
- 동적토픽모델링
- 사회연결망분석
- 분류모델평가
- 감성분석
- sbert
- degree centrality
- type-hint
- Holdout
- 머신러닝
- ROC-AUC Curve
- Enriching Word Vectors with Subword Information
- 알파베타가지치기
- Meena
- 허깅페이스
- sequential data
- 구글클라우드플랫폼
- 의미연결망
- Google Cloud Platform
- 토픽모델링
- word representation
- word2vec
- sensibleness
- dynamic topic modeling
Archives
- Today
- Total
Dev.log
[월간 코드 챌린지 시즌3] 없는 숫자 더하기 본문
[문제설명]
0부터 9까지의 숫자 중 일부가 들어있는 정수 배열 numbers가 매개변수로 주어집니다. numbers에서 찾을 수 없는 0부터 9까지의 숫자를 모두 찾아 더한 수를 return 하도록 solution 함수를 완성해주세요.
[제한사항]
- 0 ≤ numbers의 모든 원소 ≤ 9
- numbers의 모든 원소는 서로 다릅니다.
- 1 ≤ numbers의 길이 ≤ 9
[코드]
def solution(numbers):
return sum(list(set(range(10)) - set(numbers)))
Comments