728x90
def solution(s):
answer = ''
len_s=len(s)
if len_s%2: # odd
len_s=int((len_s+1)/2)
answer=s[len_s-1]
else: # even
len_s=int(len_s/2)
answer=s[len_s-1:len_s+1]
return answer
'STUDY > Algorithm' 카테고리의 다른 글
[프로그래머스] LEVEL1 나누어떨어지는 숫자 배열, python3 (0) | 2019.10.15 |
---|---|
[프로그래머스] LEVEL1 같은숫자는 싫어, python3 (0) | 2019.10.15 |
[프로그래머스] LEVEL1 K번째수, python3 (0) | 2019.10.15 |
[프로그래머스] LEVEL1 체육복, python3 (0) | 2019.10.15 |
[프로그래머스] LEVEL1 모의고사, python3, 리스트 자료형 (0) | 2019.10.15 |