palindrome 썸네일형 리스트형 [Q4] Largest palindrome product 들어가기 오늘 살펴볼 문제는 Q4 입니다. https://projecteuler.net/problem=4 문항해설 A palindromic number reads the same both ways. The largest palindrome made from the product of two 2-digit numbers is $$9009 = 91 × 99$$. Find the largest palindrome made from the product of two 3-digit numbers. 앞에서 읽으나 뒤에서 읽으나 같은 수를 "palindrome"이라고 정의했네요. 3자리수 두개의 곱으로 만들 수 있는 가장 큰 palindrome를 찾는 문제입니다. 예시코드 result, a, b = 0, 0, 0 f.. 더보기 이전 1 다음