Is palindrome ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 3

Is palindrome ?

Check if the given string is a palindrome or not? Palindromes are a numbers, phrases or words that reads same both the ways, backward as well as forward. For example, 1331 is a palindrome because on reversing the digits the number remains the same. But 123 is not a palindrome, as on reversing the digits it becomes 321. So given a number n you have to output whether the number is a palindrome or not. Print 1 if True and 0 if false. Input input contains a single string s. Constraints:- 1<=|s|<=100000 Note:- String will only contains characters from '0' to '9'. Output 1 or 0. where 1 means the number is palindrome and zero indicates it's not. Sample Input-1 1235321 Sample Output-1 1 Sample Input-2 6547 Sample Output-2 0 Sample Input-3 3443 Sample Output-3 1 Sample Input-4 3434 Sample Output-4 0 Explanation:- Testcase1:- On reversing the string it becomes 1235321 which is same as original string hence It is a palindrome

15th Nov 2021, 9:46 AM
Ashish Kumar Maurya
Ashish Kumar Maurya - avatar
5 Answers
+ 2
Show your attempts You have already completed course.
15th Nov 2021, 10:19 AM
A͢J
A͢J - avatar
+ 1
15th Nov 2021, 10:27 AM
A͢J
A͢J - avatar
0
YES But i have doubt in this que.. so plz help me
15th Nov 2021, 10:22 AM
Ashish Kumar Maurya
Ashish Kumar Maurya - avatar
0
What No?
15th Nov 2021, 10:23 AM
A͢J
A͢J - avatar
0
Ashish Kumar Maurya It is very simple just reverse string and compare with given string. If both are same then print 1 else 0
15th Nov 2021, 10:34 AM
A͢J
A͢J - avatar