[Leetcode Top Interview 150] 125. Valid Palindrome
난이도 : easy 문제링크 주어진 문자열 s가 펠린드롬인지 판별하라 case-insensitive함 공백이 제거된 상태에서 판별 펠린드롬 : 중앙을 기준으로 대칭인 문자열 1 'Z' && firstAscii 'z') ) { firstAscii = s.charAt(++firstIdx); } while (firstIdx '9' && lastAscii 'Z' && lastAscii 'z') ) { lastAscii = s.charAt(--lastIdx); } if (firstAscii != lastAscii..