A number is called swappy if it is not a palindrome, but swapping two of its digits produces a six-digit palindrome. For example, the number $813381$ is swappy, because we can swap the last two digits to get $813318$, which is a palindrome.
How many swappy six-digit numbers are there?
What I did was find all 6-digit palindromes, which would be $9\cdot10\cdot10$, which is $900$. From there, I used $\binom{6}{2}$ to find all selections of 2 numbers, which turns out to be $15$. How do I eliminate all the over counts going from here?
The three places where the count $900 \cdot \binom{6}{2}$ is wrong are:
Once you fix these three things, you'll have the right answer.