yes
Time Limit: 1 seconds
Memory Limit: 256 MB
Rating: 800
Problem StatementA numeric code found at the crime scene might contain the suspect’s hideout. But it’s only valid if it reads the same forward and backward. Is the number a palindrome? Input is denoted by: $X$: an integer which could read forwards or backwards
InputYou are given an integer $X$, which consists of no more than $1{,}000$ digits.
OutputOutput "true" if $X$ is a palindrome, "false" otherwise.
Sample CasesSample Input 1: 121 Sample Output 1: trueExplanation
$121$ reads the same backward as forward.
SourcesKL Coding Cup March 2025 > Speed Round > Problem 3
Submit | Back