728x90
def solution(start, end):
answer = []
for i in range(start, end+1):
answer.append(i)
return answer
728x90
'코딩테스트 > Python' 카테고리의 다른 글
프로그래머스 스쿨 - 편지(len 공백도 계산함)(Python) (0) | 2023.09.28 |
---|---|
프로그래머스 스쿨 - 특정 문자 제거하기(Python) (0) | 2023.09.27 |
프로그래머스 스쿨 - 카운트 다운(Python) (0) | 2023.09.25 |
프로그래머스 스쿨 - 최댓값 만들기(Python) (0) | 2023.09.24 |
프로그래머스 스쿨 - 첫 번쨰로 나오는 음수(Python) (0) | 2023.09.23 |