|
Post Made Community Wiki by Community♦
|
||||
|
|
||||
|
4 | edited body | ||
|
C in the house. (not sure if you didn't want a C example here)
That will return true for "racecar", "Racecar", "race car", "racecar ", and "RaCe cAr". It would be easy to modify to include symbols or spaces as well, but I figure it's more useful to only count letters(and ignore case). This works for all palindromes I've found in the answers here, and I've been unable to trick it into false negatives/positives. Also, if you don't like bool in a "C" program, it could obviously return int, with return 1 and return 0 for true and false respectively. |
||||
|
3 | added 370 characters in body | ||
|
C in the house. (not sure if you didn't want a C example here)
That will return true for "racecar", "Racecar", "race car", "racecar ", and "RaCe cAr". It would be easy to modify to include symbols or spaces as well, but I figure it's more useful to only count letters(and ignore case). This works for all palindromes I've found in the answers here, and I've been unable to trick it into false negatives/positives. Also, if you don't like bool in a "C" program, it could obviously return int, with return 1 and return 0 for true and false respectively. |
||||
|
2 | added 137 characters in body | ||
|
1 |
|
||
