InterviewSolution
Saved Bookmarks
| 1. |
A positive integer is called a palindrome if its representation in the decimal system is the same when read from left to right and from right to left. For a given positive integer k, write the value of the smallest palindrome larger than k to output. |
|
Answer» A positive INTEGER is CALLED a palindrome if its representation in the decimal SYSTEM is the same when read from left to right and from right to left. For a given positive integer K of not more than 1000000 digits, WRITE the value of the smallest palindrome larger than K to output... |
|