IT/알고리즘 문제

프로그래머스 - 가운데 글자 가져오기

금마s 2020. 11. 12. 16:44

# python 3

def solution(s):
    answer = ''
    index = int(len(s)/2)
    if len(s)%2 == 1:
        answer = s[index]
    else:
        answer = s[index-1:index+1]
    return answer

 

 

 

 

 

 

728x90