반응형
1. 문제
2. 설계
3. 알고리즘
4. 구현
def solution(x, n):
answer = []
for i in range(n):
answer.append(x+i*x)
return answer
def solution(x, n):
return [i*x+x for i in range(n)]
반응형
'PS > 프로그래머스' 카테고리의 다른 글
프로그래머스 타겟넘버 python, BFS로 풀기 (0) | 2021.06.10 |
---|---|
프로그래머스 기능개발 python (0) | 2021.06.10 |
프로그래머스 평균구하기 python (0) | 2021.05.31 |
프로그래머스 다트게임 cpp (0) | 2021.05.28 |
프로그래머스 비밀지도 cpp (0) | 2021.05.24 |
댓글