[프로그래머스 Level3] 가장 긴 팰린드롬 Python

손주애·2020년 12월 17일
0

코딩테스트

목록 보기
11/22

def solution(s):
    size = []

    for i in range(len(s)):
        temp = 0
        while temp <= len(s):
            if s[i:temp] == s[i:temp][::-1]:
                size.append(len(s[i:temp]))
            temp += 1

    return max(size)

profile
백엔드 개발자입니다:)

0개의 댓글