A palindrome is a number that reads the same forward and backward, such as 121. How many odd, 4-digit numbers are palindromes?
40
45
50
90
2500
I was expecting the answer to be 45. I got this by -
1st and last digits are odd, so 1, 3, 5, 7, 9 - 5 ways
middle 2 digits can range from 0-9, so 10 ways. BUT, palindrome means that the digits in the middle cannot be the same as the outer digits so shouldn't we subtract 1 from 10 way = 9 ways.
And then we get 5 x 9 = 45
OA is 50
Thanks for your help.