728x90
def solution(start, end):
answer = []
for i in range(start, end-1, -1):
answer.append(i)
return answer
728x90
'코딩테스트 > Python' 카테고리의 다른 글
프로그래머스 스쿨 - 특정 문자 제거하기(Python) (0) | 2023.09.27 |
---|---|
프로그래머스 스쿨 - 카운트 업(Python) (0) | 2023.09.26 |
프로그래머스 스쿨 - 최댓값 만들기(Python) (0) | 2023.09.24 |
프로그래머스 스쿨 - 첫 번쨰로 나오는 음수(Python) (0) | 2023.09.23 |
프로그래머스 스쿨 - 짝수의 합(range 사용법)(Python) (0) | 2023.09.22 |