How many palindromes are between 10 and 10000, inclusive?
A palindrome is a number that reads the same forward and backwards.
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
From 11 to 99 we have 9 .. From 101 to 191we have 10 palindromes So the number of palindromes from 11 to 1000 should equal 9 * 10 + 9 = 99 palindromes .. ......... From 1001 to 1991 we have 10 palindromes .. So from 1000 to 10000 we have 9 * 10 =90 palindromes .. The number of palindromes from 11 to 10000 = 99 + 90 =189 .. This is a simple solution ..