This is a self-answer query. I came across a recent mathSE query that presented an interesting problem, and took some time solving it. When I looked for the query to respond, I couldn't find it. I suspect that the problem may have been closed or deleted.
The real challenge is to avoid brute force and to present a completely analytical solution. That is why I think it is worthwhile to present the problem and solution.
Problem
In the multiplication problem below, the letter $H$ is used to symbolize the
same digit (one of the values $0$ through $9$) throughout the problem. Similarly, the letter $E$ symbolizes a specific digit throughout the problem,
and the letter $W$ symbolizes a specific digit throughout the problem.
The letters $H,E,W$ symbolize different digits from each other. No number is allowed to have its leftmost digit $= 0$. Therefore, you know immediately that none of $H,E,$ or $W$ can equal $0$.
\begin{array}{ r r r r} & & H & E \\ \times & & E & H \\ \hline W & H & E & W \\ \end{array}
Determine the values for $H,E,$ and $W$.
$HE×EH=WHEW$. Subtract $HE×10$ and get $$HE×(E-1)H=W00W\\=W×7×11×13$$ H and E are different so HE is not a multiple of 11, so $(E-1)H$ is a multiple of 11, so $E=H+1$ and $(E-1)H=HH$.
$$HE×HH=W×7×11×13\\HE×H=W×7×13$$ $13$ must be a factor of $HE$, and since we know $E=H+1$, the only possible multiple of $13$ is $78$.
Lastly, $HE×H=78×7=W×7×13$, so $W=6$