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
-
6082 Solvers
-
Remove all the words that end with "ain"
2633 Solvers
-
2551 Solvers
-
7964 Solvers
-
Matlab Basics - Switching Assignments
503 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.)