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
- Real or Not? NLP with Disaster Tweets
- PYTHON
- hackerrank
- Docker
- 파이썬
- 프로그래머스
- 데이콘
- 편스토랑 우승상품
- Git
- 맥북
- Kaggle
- Baekjoon
- ChatGPT
- leetcode
- 우분투
- 편스토랑
- 코로나19
- 캐치카페
- SW Expert Academy
- 백준
- 더현대서울 맛집
- 자연어처리
- programmers
- github
- dacon
- AI 경진대회
- gs25
- 금융문자분석경진대회
- 프로그래머스 파이썬
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