Palindrome String

Easy

📝 Description

Check if a string reads the same forwards and backwards (ignoring case).

Input Format

A single string s

Output Format

Print "true" if palindrome, "false" otherwise

Constraints

1 ≤ s.length ≤ 1000

🔍 Sample Input

Racecar
            

✅ Sample Output

true
            

Code Editor

Please login to run and submit code.

Shortcuts: Ctrl+Enter to submit, Ctrl+Shift+R to run