https://programmers.co.kr/learn/courses/30/lessons/12954
[정답]
def solution(x, n):
answer = []
for i in range(0,n):
answer.append(x+x*i)
return answer
'알고리즘 공부 > 프로그래머스 > Python3' 카테고리의 다른 글
[프로그래머스] 하샤드 수 (0) | 2020.11.23 |
---|---|
[프로그래머스] 자연수 뒤집어 배열로 만들기 (0) | 2020.11.23 |
[프로그래머스] 서울에서 김서방 찾기 (0) | 2020.11.22 |
[프로그래머스] 자릿수 더하기 (0) | 2020.11.22 |
[프로그래머스] 이상한 문자 만들기 (0) | 2020.11.22 |