[Programmers][Python3] x만큼 간격이 있는 n개의 숫자
2021-06-10 16:30

[Programmers][Python3] x만큼 간격이 있는 n개의 숫자

❓ 문제: x만큼 간격이 있는 n개의 숫자
❗ x만큼 간격이 있는 n개의 숫자 풀이
def solution(x, n):
answer = []
for i in range(n):
answer.append(...

댓글