Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 프로그래머스
- ubuntu
- 편스토랑
- 맥북
- hackerrank
- 프로그래머스 파이썬
- github
- 우분투
- 편스토랑 우승상품
- PYTHON
- leetcode
- 데이콘
- gs25
- 더현대서울 맛집
- Real or Not? NLP with Disaster Tweets
- dacon
- 파이썬
- ChatGPT
- Docker
- Git
- programmers
- 백준
- 코로나19
- SW Expert Academy
- AI 경진대회
- Kaggle
- 금융문자분석경진대회
- 자연어처리
- 캐치카페
- Baekjoon
Archives
- Today
- Total
솜씨좋은장씨
[Programmers] 배열 회전시키기 (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 프로그래머스의 배열 회전시키기 입니다.
👨🏻💻 문제 풀이
list 의 slicing 기능을 활용하여 문제를 풀었습니다.
direction 이 right 일 경우 list 의 마지막 값을 앞으로 가져오고 나머지 값을 그 뒤로
direction 이 left 일 경우 list 의 두번째 값부터 남긴 뒤 첫번째 값을 그 뒤에 붙이면 됩니다.
👨🏻💻 코드 ( Solution )
def solution(numbers, direction):
answer = []
if direction == 'right':
answer = numbers[-1:] + numbers[:-1]
elif direction == 'left':
answer = numbers[1:] + numbers[:1]
return answer
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[Programmers] 연속된 수의 합 (Python) (0) | 2023.02.15 |
---|---|
[Programmers] 로그인 성공? (Python) (0) | 2023.02.14 |
[Programmers] 잘라서 배열로 지정하기 (Python) (0) | 2023.02.11 |
[BaekJoon] 25957번 : 단어 우월 효과 (캠브릿지 대학의 연구결과) (Python) (0) | 2023.02.10 |
[Programmers] 등수 매기기 (Python) (0) | 2023.02.09 |
Comments