Problem Description
A positive integer is a super-palindrome if it is a palindrome and it is also the square of a palindrome. Given two positive integers left
and right
represented as strings, return the number of super-palindromes integers in the inclusive range [left, right]
.
Key Insights
- A super-palindrome must be both a palindrome and the square of another palindrome.
- The range of numbers can be very large (up to 10^18), so we need an efficient way to check for super-palindromes.
- We can generate palindromes and check their squares to see if they fall within the given range.
Space and Time Complexity
Time Complexity: O(n), where n is the number of palindromes we generate and check. Space Complexity: O(1), as we only use a fixed amount of space for variables.
Solution
To solve the problem, we can follow these steps:
- Generate all possible palindromic numbers up to a certain limit.
- For each palindromic number, calculate its square.
- Check if the squared value is a palindrome and falls within the given range
[left, right]
. - Count the valid super-palindromes.
We can use a loop to generate palindromes by constructing them from half of the digits, and then checking both even and odd lengths. The palindrome check can be done easily by converting the number to a string and comparing it with its reverse.