haju__log
[프로그래머스][Lv.1][python] x만큼 간격이 있는 n개의 숫자 본문
반응형
def solution(x,n):
answer = []
tmp=x
for i in range(n):
answer.append(tmp)
tmp+=x
return answer
반응형
'programmers_프로그래머스' 카테고리의 다른 글
[프로그래머스][Lv.1][python] 제일 작은 수 제거하기 (0) | 2023.04.19 |
---|---|
[프로그래머스][Lv.1][python] 콜라츠 추측 (0) | 2023.04.19 |
[프로그래머스] 핸드폰 번호 가리기 (0) | 2022.11.17 |
[프로그래머스/programmers] 문자열 내 p와 y의 개수 (0) | 2022.11.15 |
[프로그래머스/programmers] 자연수 뒤집어 배열로 만들기 (0) | 2022.11.15 |