문제
https://school.programmers.co.kr/learn/courses/30/lessons/120844
설계
def solution(numbers, direction):
if direction == 'right':
num = numbers[-1]
numbers.pop()
numbers.insert(0, num) # 0번째 자리에 삽입
elif direction == 'left':
num = numbers[0]
numbers.pop(0)
numbers.append(num)
return numbers
'PS (Problem Solving) > Programmers' 카테고리의 다른 글
[프로그래머스] 피자 나눠 먹기 (2) - 파이썬 (0) | 2023.01.25 |
---|---|
[프로그래머스] 외계행성의 나이 - 파이썬 (0) | 2023.01.24 |
[프로그래머스] 문자열 정렬하기 (1) - 파이썬 (0) | 2023.01.24 |
[프로그래머스] 특이한 정렬 - 파이썬 (0) | 2023.01.24 |
[프로그래머스] 등수 매기기 - 파이썬 (0) | 2023.01.24 |