動機

這題目有夠爛,這根本不像是找對稱點,而是確認對稱點

Sol

def solution(S):
    if len(S) % 2 == 0 or S != S[::-1]:
        return -1
    else:
        return len(S)//2