https://leetcode.com/problems/longest-palindrome/description/ LeetCode - The World's Leading Online Programming Learning Platform Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com /** 1. 문제 해석하기 가장 긴 palindrome 만들기 2. 문제 풀이 방향 홀수는 한개(가장 긴 홀수를 찾아야함) 짝수는 전부 하면 무조건 palindrome을 만들 수 있을 것 같음. */ c..