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
- graph
- JavaScript
- 생활코딩
- 따라하며 배우는 C언어
- BASIC
- 백준
- 따라하면서 배우는 C언어
- sorting
- String
- BFS
- Algorithm
- udemy
- web
- greedy
- php
- 인프런
- 정수론
- Python
- Algospot
- C
- DP
- 따배씨
- server
- dfs
- Math
- BOJ
- 종만북
- Cleancode
- programmers
- C언어
Archives
- Today
- Total
몽상실현개발주의
[프로그래머스] level1 / 없는 숫자 더하기 / Python 파이썬 본문
[프로그래머스] level1 / 없는 숫자 더하기 / Python 파이썬
https://programmers.co.kr/learn/courses/30/lessons/86051
풀이
def solution(numbers):
answer = 0
numsCheck = [0] * 10
for number in numbers:
numsCheck[number] += 1
for i in range(10):
if numsCheck[i]:
continue
answer += i
return answer
더 좋은 풀이
1~9까지 숫자의 합이 45인것을 이용하였다.
def solution2(numbers):
answer = 45 - sum(numbers)
return answer
'Algorithm PS > 프로그래머스' 카테고리의 다른 글
[프로그래머스] level1 / 최소직사각형 / Python 파이썬 (0) | 2021.11.16 |
---|---|
[프로그래머스] level1 / 약수의 개수와 덧셈 / Python 파이썬 (0) | 2021.11.16 |
[프로그래머스] level1 / 숫자 문자열과 영단어 / Python 파이썬 (0) | 2021.11.16 |
[프로그래머스] level2 / 거리두기 확인하기 / Python 파이썬 (0) | 2021.08.30 |
[프로그래머스] level2 / 프렌즈 4블록 / Python 파이썬 (0) | 2021.06.04 |
Comments