|
Post Made Community Wiki by Community♦
|
||||
|
|
||||
|
4 | Fix spelling errors | ||
|
I'm seeing a lot of incorrect answers here. Any correct solution needs to ignore whitespace and punction punctuation (and any non-alphabetic characters actually) and needs to be case insensitive. A few good example test cases are: "A man, a plan, a canal, Panama." "A Toyota's a Toyota." "A" "" As well as some non-palindromes. Example solution in C# (note: empty and null strings are considered palindromes in this design, if this is not desired it's easy to change):
|
||||
|
3 | added 117 characters in body | ||
|
I'm seeing a lot of incorrect answers here. Any correct solution needs to ignore whitespace and punction (and any non-alphabetic characters actually) and needs to be case insensitive. A few good example test cases are: "A man, a plan, a canal, Panama." "A Toyota's a Toyota." "A" "" As well as some non-palindromes. Example solution in C#C# (note: empty and null strings are considered palindromes in this design, if this is not desired it's easy to change):
|
||||
|
2 | deleted 1 characters in body | ||
|
1 |
|
||
