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
- sequential data
- sensibleness
- 구글클라우드플랫폼
- Google Cloud Platform
- degree centrality
- 토픽모델링
- 동적토픽모델링
- Min-Max 알고리즘
- ROC-AUC Curve
- QANet
- type-hint
- Enriching Word Vectors with Subword Information
- Holdout
- 허깅페이스
- topic modeling
- sbert
- dynamic topic modeling
- word2vec
- 머신러닝
- semantic network
- GCP
- word representation
- 임베딩
- 사회연결망분석
- Meena
- 의미연결망
- 감성분석
- hugging face
- 알파베타가지치기
- 분류모델평가
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