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

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

프로그래머스

목록 보기
52/106

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

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

x씩 증가를 위해 1~n까지의 i를 곱했다.

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

0개의 댓글