Largest Palindrome Product

Largest Palindrome Product

Challenge 4 (Project Euler)

In this challenge, I had to get the largest palindrome product of three digits which ranges from 100 to 999.  This is the fourth challenge that I have solved on Project Euler and as of 1/19/2020, this challenge has been solved by 459006 people.  The steps involved in solving this challenge comprised of multiplying every combination of numbers in the three-digit range. The next step was checking to see if the number was a palindrome number meaning when the number has reversed the sequence of the number remained the same, palindrome numbers include the following 9009, 1111, 3773, and 80008. The final step was checking to see was that the palindrome number is bigger than the previous palindrome number from the past iteration. 


Largest Palindrome Product (Java) - Project Euler Challenge By Brian O Cnaimhsi
Largest Palindrome Product















Output 

The solution to this challenge can be found on my Github at Largest Palindrome Product. The output of this program for the largest palindrome product of three digits is 

"906609"