Problem Description
Given an integer x, return true if x is a palindrome, and false otherwise.
Key Insights
- A palindrome is a number that reads the same forwards and backwards.
- Negative numbers are not palindromes due to the presence of the negative sign.
- Numbers ending in 0 (except for 0 itself) cannot be palindromes because they would start with 0 when reversed.
Space and Time Complexity
Time Complexity: O(log10(n)) - The number of digits in the number determines how many iterations we need. Space Complexity: O(1) - We only use a constant amount of space.
Solution
To determine if a number is a palindrome without converting it to a string, we can reverse half of the number and compare it with the other half. We can do this by repeatedly extracting the last digit and building the reversed number. If the original number is equal to the reversed number or the original number without its last digit (in the case of odd digit counts), then it is a palindrome.