[프로그래머스] 없는 숫자 더하기 Python

현지·2021년 9월 27일
0

프로그래머스

목록 보기
26/34

문제

https://programmers.co.kr/learn/courses/30/lessons/86051

0부터 9까지의 숫자 중 일부가 들어있는 배열 numbers가 매개변수로 주어집니다. numbers에서 찾을 수 없는 0부터 9까지의 숫자를 모두 찾아 더한 수를 return 하도록 solution 함수를 완성해주세요.

제한 사항

  • 1 ≤ numbers의 길이 ≤ 9
  • 0 ≤ numbers의 모든 수 ≤ 9
  • numbers의 모든 수는 서로 다릅니다.

입출력 예시

아이디어

✅0~9인 리스트를 만들어서 주어진 리스트를 빼고 남은 숫자를 더한다.

  1. collections.Counter을 이용하면 리스트를 빼는 것이 가능하다.
  2. 주어진 리스트를 빼고 남은 수를 더하면 답이다.

solution함수_python

import collections

def solution(numbers):
    answer = 0
    num = list(range(0,10))
    answer = collections.Counter(num)-collections.Counter(numbers)
    return sum(answer)

다른사람 코드

:: 단순하게 생각해서 풀 수 있다.

def solution(numbers):
    return 45 - sum(numbers)

0개의 댓글