본문 바로가기
파이썬/프로그래머스

x만큼 간격이 있는 n개의 숫자

by L_SU 2022. 7. 10.
def solution(x, n):
    answer=[0 for _ in range(n)]
    subx=0
    for i in range(n):
        subx+=x
        answer[i]=subx
    return answer