Given a string/character array, return true if the string is a palindrome else returns false.
For example:
sample_text = "Sore was I ere I saw Eros.";
isPalindrome(sample_text);
ans =
True
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers35
Suggested Problems
-
Replace NaNs with the number that appears to its left in the row.
3064 Solvers
-
4564 Solvers
-
8008 Solvers
-
Area of an equilateral triangle
6801 Solvers
-
107 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Hello, Srijith Vijay. Thank-you for creating this interesting Problem. In your Problem Statement you refer to "a string/character array". It is worth noting that the 'string array' data type (string) and the 'character array' data type (char) are different, and functions that work for one of these data types don't always work correctly with the other. If you want Players to accommodate both data types, it would be best to include such in the Test Suite. If you only want Players to work with inputs of the string data type, then your Problem Statement could be reworded to improve the clarity. Regards, DIV.