728x90
def solution(x, n):
answer = []
for i in range(n):
answer.append((i+1)*x)
return answer
'STUDY > Algorithm' 카테고리의 다른 글
[프로그래머스] LEVEL2 기능개발, python3, 스택/큐 (0) | 2019.10.22 |
---|---|
[프로그래머스] LEVEL2 다리를 지나는 트럭,python3, 스택/큐 (0) | 2019.10.22 |
[프로그래머스] LEVEL1 행렬의 덧셈,python3 (0) | 2019.10.19 |
[프로그래머스] LEVEL1 핸드폰 번호 가리기,python3 (0) | 2019.10.19 |
[프로그래머스] LEVEL1 최대공약수와 최소공배수, python3 (0) | 2019.10.19 |