title: "[프로그래머스] 연속된 수의 합 Python 파이썬 해설 (Level 0) - 이도훈"
cleanUrl: "programmers/120923"
description: "프로그래머스 Level 0 문제 [연속된 수의 합]의 풀이를 정리합니다."
def solution(num, total):
start = (total - num * (num - 1) // 2) // num
answer = [start + i for i in range(num)]
return answer
프로그래머스 코딩테스트 연습 https://school.programmers.co.kr/learn/challenges