A palindrome is a sequence of characters which reads the same backward or forward, for instance
'a man a plan a canal panama'
is a palindrome. Write a function that,
a) given a string input, returns true or false depending on whether this string is a palindrome (up to white-spaces) or not.
b) The function's source code must be a palindrome.
Solution Stats
Problem Comments
2 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers36
Suggested Problems
-
3807 Solvers
-
The Hitchhiker's Guide to MATLAB
3401 Solvers
-
1343 Solvers
-
5053 Solvers
-
289 Solvers
More from this Author7
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
kinda cheating if you allow comments lines as part of the palindrome
Not really. The definition of palindrome does not require that letters or words have some special meaning besides their order. Moreover, the problem author adds a comment section to the default solution that tips using comments as an expected kind of behavior. Finally, all valid solutions to this problem so far use comments except people that identify their own file and mark it as valid palindrome or use some hack (and that's cheating.)