없는 숫자 더하기
소스를 한 줄로 적어보기
def solution(numbers): return sum([i for i in [1,2,3,4,5,6,7,8,9,0] if i not in numbers])