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
- 캐치카페
- hackerrank
- 우분투
- Git
- 백준
- AI 경진대회
- 맥북
- 프로그래머스
- 코로나19
- 금융문자분석경진대회
- Docker
- 프로그래머스 파이썬
- dacon
- Kaggle
- gs25
- 자연어처리
- 편스토랑 우승상품
- ChatGPT
- 파이썬
- ubuntu
- PYTHON
- github
- 편스토랑
- programmers
- SW Expert Academy
- leetcode
- 더현대서울 맛집
- 데이콘
- Real or Not? NLP with Disaster Tweets
- Baekjoon
Archives
- Today
- Total
솜씨좋은장씨
[Programmers] 가운데 글자 가져오기 (Python) 본문
728x90
반응형
1일 1문제 314일차!
오늘의 문제는 프로그래머스의 가운데 글자 가져오기 입니다.
Solution
def solution(s):
answer = ''
center = len(s) // 2
if len(s) % 2 == 0:
answer = s[center-1:center+1]
else:
answer = s[center]
return answer
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[HackerRank] Reverse a doubly linked list (Python) (0) | 2021.02.09 |
---|---|
[HackerRank] Insert a node at a specific position in a linked list (Python) (0) | 2021.02.08 |
[Programmers] 나누어 떨어지는 숫자 배열 (Python) (0) | 2021.02.06 |
[leetCode] 389. Find the Difference (Python) (0) | 2021.02.03 |
[leetCode] 162. Find Peak Element (Python) (0) | 2021.02.02 |
Comments