InterviewSolution
Saved Bookmarks
| 1. |
Write the algoritm to check palindrome number |
|
Answer» Algorithm to check whether a number is a PALINDROME or notInput the number.Find the REVERSE of the number.If the reverse of the number is equal to the number, then return TRUE. Else, return false. |
|