41380593f7
The previous solution removed numbers entirely, whereas this one treats them like letters and checks if they are evenly spaced. More importantly, the old solution test seemed to check if the numbers were palindromic, but because the solution replaced them with "", it wasn't testing what it seemed to. I added a new test to differentiate between the palindromic "rac3e3car" and the non-palindromic "r3ace3car".
6 lines
222 B
JavaScript
6 lines
222 B
JavaScript
const palindromes = function (string) {
|
|
const processedString = string.toLowerCase().replace(/[^a-z0-9]/g, "");
|
|
return processedString.split("").reverse().join("") == processedString;
|
|
};
|
|
|
|
module.exports = palindromes;
|