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

[프로그래머스/파이썬] x만큼 간격이 있는 n개의 숫자

by 현장 2021. 12. 26.

-코드

def solution(x, n):
    answer = []
    for i in range(1, n + 1):
        answer.append(x * i)
    return answer