Computer Science, asked by shrutirawat11a, 5 months ago

write algorithm to check string is palindrome or not

Answers

Answered by Anonymous
3

Answer:

Input the string. Find the reverse of the string. If the reverse of the string is equal to the input string, then return true. Else, return false.

PLEASE MARK AS BRAINLIEST AND ALSO FOLLOW ME

Answered by tiwarishashwat125
1

Answer:

Algorithm to check whether a string is a palindrome or not

Input the string. Find the reverse of the string. If the reverse of the string is equal to the input string, then return true. Else, return false.

Explanation:

Similar questions