0
I don't understand this question.
/* 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. /*
2 Answers
0
1. Let's cover what a palindromic number is [https://en.wikipedia.org/wiki/Palindromic_number] - A palindromic number or numeral palindrome is a number that remains the same when its digits are reversed. Like 16461, for example, it is "symmetrical".
2. You have an example of the highest palindromic number made from the multiplication of two 2-digit numbers, meaning that this is the MAXIMUM number that is a PALINDROME and can be made by multiplying two 2-digits numbers
3. Your task is to find the highest one that is made from the product of two 3-digit numbers
https://stackoverflow.com/questions/21286890/find-the-largest-palindrome-made-from-the-product-of-two-3-digit-numbers-javas - maybe looking at this code will help you to understand the task. Also, you can try to think of more efficient way to do it :]
0
wow.. ok thank you :D