import math
def solution(s):
answer = ''
mid =math.trunc(len(s)/2)
if len(s)%2 == 0:
answer += s[mid-1]
answer += s[mid]
return answer
반응형
'프로그래머스' 카테고리의 다른 글
1단계: 2016년 - Python (0) | 2021.01.28 |
---|---|
1단계: K번째수 - Python (0) | 2021.01.28 |
1단계: 두 개 뽑아서 더하기 - Python (0) | 2021.01.28 |
댓글