[프로그래머스 파이썬] 없는 숫자 더하기

일단 해볼게·2023년 3월 11일
0

프로그래머스

목록 보기
56/106

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

def solution(numbers):
    return sum([i for i in range(0, 10) if i not in numbers])

다른 사람 답

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

주어진 범위의 합을 더한 것에서 numbers의 합을 뺀다.

profile
시도하고 More Do하는 백엔드 개발자입니다.

0개의 댓글