# 가장 긴 펠린드롬 - 프로그래머스

가장 긴 펠린드롬 - 프로그래머스

def solution(s):
    ret = 0
    l = len(s)
    for i in range(l):
        for j in range(i, l + 1):
            if s[i:j] == s[i:j][::-1]:
                ret = max(ret, len(s[i:j]))
    return ret