펠린드롬 찾는 문제. 처음에 회문 1개인줄 모르고 다찾는 구조로 짰다가 급하게 수정.. import sys input = sys.stdin.readline def find_palindrome(N,M,sentences): for i in range(N): for j in range(N-M+1): if sentences[i][j] == sentences[i][j+M-1]: left = j right = j+M-1 while sentences[i][left] == sentences[i][right] and left