Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- leetcode
- 더현대서울 맛집
- 맥북
- Real or Not? NLP with Disaster Tweets
- PYTHON
- Docker
- 캐치카페
- github
- Git
- AI 경진대회
- 프로그래머스 파이썬
- gs25
- 자연어처리
- 우분투
- 프로그래머스
- 편스토랑 우승상품
- 금융문자분석경진대회
- hackerrank
- 백준
- 편스토랑
- 데이콘
- programmers
- 코로나19
- Baekjoon
- ubuntu
- 파이썬
- Kaggle
- ChatGPT
- dacon
- SW Expert Academy
Archives
- Today
- Total
솜씨좋은장씨
[Programmers] 월간 코드 챌린지 시즌 3 - 없는 숫자 더하기 (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 프로그래머스의 월간 코드 챌린시 시즌 3 없는 숫자 더하기 입니다.
👨🏻💻 코드 ( Solution )
def solution(numbers):
answer = -1
except_numbers = set(range(0, 10)) - set(numbers)
answer = sum(list(except_numbers))
return answer
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 1251번 : 단어 나누기 (Python) (0) | 2021.09.27 |
---|---|
[BaekJoon] 7568번 : 덩치 (Python) (0) | 2021.09.26 |
[BaekJoon] 2884번 : 알람 시계 (Python) (0) | 2021.09.24 |
[BaekJoon] 2864번 : 5와 6의 차이 (Python) (0) | 2021.09.23 |
[BaekJoon] 10867번 : 중복 빼고 정렬하기 (Python) (0) | 2021.09.22 |
Comments