728x90
https://programmers.co.kr/learn/courses/30/lessons/86051
문제 풀이
없는 숫자를 찾는 게 아니라 없는 숫자의 합을 구하면 된다.
0부터 9까지 더한 값에서 numbers를 더한 값을 빼면 끝.
느낀 점
코드
def solution(numbers):
answer = sum([0,1,2,3,4,5,6,7,8,9])
answer -= sum(numbers)
return answer
'문제 풀이 > 프로그래머스 (Programmers)' 카테고리의 다른 글
[Python] 프로그래머스 : 내적 (0) | 2022.06.22 |
---|---|
[Python] 프로그래머스 : 음양 더하기 (0) | 2022.06.22 |
[Python] 프로그래머스 : 크레인 인형뽑기 게임 (0) | 2022.06.21 |
[Python] 프로그래머스 : 숫자 문자열과 영단어 (0) | 2022.06.21 |
[Python] 프로그래머스 : 신규 아이디 추천 (0) | 2022.06.19 |
댓글