ALGORITM FOR TO CHECK PALINDROME OR NOT
the main algo to check palindrome is inside the while loop :)
#include<stdio.h> #include<conio.h> main() { int a[10],num,i=0,result=0,n; printf("Enter a number"); scanf("%d",&n); num=n; while(num!=0) { result=result*10; a[i]=num%10; num=num/10; result=result+a[i]; i++; } if(result==n) printf("Number is a palindrome"); else printf("Not a palindrome"); getch(); }
def isPalindrome(word): if type(word) is not string: word=str(word) word=word.upper() if word==word[::-1]: return True else: return False Then, call isPalindrome for your word, isPalindrome("Racecar")=True
Join our real-time social learning platform and learn together with your friends!