Easy to read palindrome checker The 2019 Stack Overflow Developer Survey Results Are In Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Palindrome CheckerLargest Palindrome CheckerPalindrome Checker AlgorithmNumber palindrome checkerPalindrome Checker in JavaFinding palindromes in C#Python palindrome checkerTest if a string is a palindromeFinding an equilibrium index in an int arrayPython 3 palindrome checker
How to copy the contents of all files with a certain name into a new file?
Why don't hard Brexiteers insist on a hard border to prevent illegal immigration after Brexit?
Take groceries in checked luggage
Is a pteranodon too powerful as a beast companion for a beast master?
Scientific Reports - Significant Figures
verb not working in beamer even though I use [fragile]
Does Parliament hold absolute power in the UK?
Why not take a picture of a closer black hole?
Are my PIs rude or am I just being too sensitive?
Converting from Markdown-with-biblatex-commands to LaTeX
The following signatures were invalid: EXPKEYSIG 1397BC53640DB551
RT6224D-based step down circuit yields 0V - why?
Derivation tree not rendering
Are spiders unable to hurt humans, especially very small spiders?
How are presidential pardons supposed to be used?
Am I ethically obligated to go into work on an off day if the reason is sudden?
Arduino Pro Micro - switch off LEDs
Did the new image of black hole confirm the general theory of relativity?
Why is superheterodyning better than direct conversion?
"... to apply for a visa" or "... and applied for a visa"?
He got a vote 80% that of Emmanuel Macron’s
A pet rabbit called Belle
Still taught to reverse oxidation half cells in electrochemistry?
Windows 10: How to Lock (not sleep) laptop on lid close?
Easy to read palindrome checker
The 2019 Stack Overflow Developer Survey Results Are In
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Palindrome CheckerLargest Palindrome CheckerPalindrome Checker AlgorithmNumber palindrome checkerPalindrome Checker in JavaFinding palindromes in C#Python palindrome checkerTest if a string is a palindromeFinding an equilibrium index in an int arrayPython 3 palindrome checker
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
$begingroup$
I made a palindrome checker that's supposed to be designed to be simple and easy to read. Please let me know what you think. I believe the time complexity is $mathcalO(n)$ but I'm not too sure about that:
Challenge: You'll need to remove all non-alphanumeric characters (punctuation, spaces and symbols) and turn everything into the same case (lower or upper case) in order to check for palindromes.
function reverseString(str)
_/g, "").toLowerCase().split(" ").join("");
var array = [];
for(var i = str.length ; i >=0; i--)
array.push(str[i])
return(array.join(""));
reverseString("My age is 0, 0 si ega ym.");
function palindrome(str)
str = str.replace(/[^ws]
javascript algorithm programming-challenge array palindrome
$endgroup$
add a comment |
$begingroup$
I made a palindrome checker that's supposed to be designed to be simple and easy to read. Please let me know what you think. I believe the time complexity is $mathcalO(n)$ but I'm not too sure about that:
Challenge: You'll need to remove all non-alphanumeric characters (punctuation, spaces and symbols) and turn everything into the same case (lower or upper case) in order to check for palindromes.
function reverseString(str)
_/g, "").toLowerCase().split(" ").join("");
var array = [];
for(var i = str.length ; i >=0; i--)
array.push(str[i])
return(array.join(""));
reverseString("My age is 0, 0 si ega ym.");
function palindrome(str)
str = str.replace(/[^ws]
javascript algorithm programming-challenge array palindrome
$endgroup$
$begingroup$
Are you sure this is working as intended?
$endgroup$
– Mast
Mar 30 at 18:38
$begingroup$
The testreverseString("My age is 0, 0 si ega ym.");
should at least be something likeconsole.log(palindrome(reverseString("My age is 0, 0 si ega ym.")));
, and does your challenge ignore spaces? Because if they don't, your example string should return false while it doesn't. Please clarify the exact challenge.
$endgroup$
– Mast
Mar 30 at 18:42
add a comment |
$begingroup$
I made a palindrome checker that's supposed to be designed to be simple and easy to read. Please let me know what you think. I believe the time complexity is $mathcalO(n)$ but I'm not too sure about that:
Challenge: You'll need to remove all non-alphanumeric characters (punctuation, spaces and symbols) and turn everything into the same case (lower or upper case) in order to check for palindromes.
function reverseString(str)
_/g, "").toLowerCase().split(" ").join("");
var array = [];
for(var i = str.length ; i >=0; i--)
array.push(str[i])
return(array.join(""));
reverseString("My age is 0, 0 si ega ym.");
function palindrome(str)
str = str.replace(/[^ws]
javascript algorithm programming-challenge array palindrome
$endgroup$
I made a palindrome checker that's supposed to be designed to be simple and easy to read. Please let me know what you think. I believe the time complexity is $mathcalO(n)$ but I'm not too sure about that:
Challenge: You'll need to remove all non-alphanumeric characters (punctuation, spaces and symbols) and turn everything into the same case (lower or upper case) in order to check for palindromes.
function reverseString(str)
_/g, "").toLowerCase().split(" ").join("");
var array = [];
for(var i = str.length ; i >=0; i--)
array.push(str[i])
return(array.join(""));
reverseString("My age is 0, 0 si ega ym.");
function palindrome(str)
str = str.replace(/[^ws]
javascript algorithm programming-challenge array palindrome
javascript algorithm programming-challenge array palindrome
edited Mar 30 at 22:35
200_success
131k17157422
131k17157422
asked Mar 30 at 18:26
DreamVision2017DreamVision2017
835
835
$begingroup$
Are you sure this is working as intended?
$endgroup$
– Mast
Mar 30 at 18:38
$begingroup$
The testreverseString("My age is 0, 0 si ega ym.");
should at least be something likeconsole.log(palindrome(reverseString("My age is 0, 0 si ega ym.")));
, and does your challenge ignore spaces? Because if they don't, your example string should return false while it doesn't. Please clarify the exact challenge.
$endgroup$
– Mast
Mar 30 at 18:42
add a comment |
$begingroup$
Are you sure this is working as intended?
$endgroup$
– Mast
Mar 30 at 18:38
$begingroup$
The testreverseString("My age is 0, 0 si ega ym.");
should at least be something likeconsole.log(palindrome(reverseString("My age is 0, 0 si ega ym.")));
, and does your challenge ignore spaces? Because if they don't, your example string should return false while it doesn't. Please clarify the exact challenge.
$endgroup$
– Mast
Mar 30 at 18:42
$begingroup$
Are you sure this is working as intended?
$endgroup$
– Mast
Mar 30 at 18:38
$begingroup$
Are you sure this is working as intended?
$endgroup$
– Mast
Mar 30 at 18:38
$begingroup$
The test
reverseString("My age is 0, 0 si ega ym.");
should at least be something like console.log(palindrome(reverseString("My age is 0, 0 si ega ym.")));
, and does your challenge ignore spaces? Because if they don't, your example string should return false while it doesn't. Please clarify the exact challenge.$endgroup$
– Mast
Mar 30 at 18:42
$begingroup$
The test
reverseString("My age is 0, 0 si ega ym.");
should at least be something like console.log(palindrome(reverseString("My age is 0, 0 si ega ym.")));
, and does your challenge ignore spaces? Because if they don't, your example string should return false while it doesn't. Please clarify the exact challenge.$endgroup$
– Mast
Mar 30 at 18:42
add a comment |
5 Answers
5
active
oldest
votes
$begingroup$
Time complexity
Your time complexity is linear but you can save a few traversals over the string and lower the constant factor as you improve readability. Checking whether a string is a palindrome can be done in one pass with two pointers at each end of the string (plus some conditionals for your special characters), but this gains speed at the expense of readability; I'd encourage a round of clean-up before going for optimizations.
Repeated code
Repeated code harms maintainability and readability. Notice that the line
str.replace(/[^ws]|_/g, "").toLowerCase().split(" ").join("");
appears in two places in the code. If you decide to change one to accept a different regex but forget to change the other one, you've introduced a potentially subtle bug into your program. Move this to its own function to avoid duplication.
Use accurate function names and use builtins
reverseString
is a confusing function: it does more than reversing a string as advertised: it also strips whitespace and punctuation, which would be very surprising if I called this function as a user of your library without knowing its internals. All functions should operate as black boxes that perform the task they claim to, nothing more or less.
The array prototype already has a reverse()
function, so there's no need to write this out by hand.
Avoid unnecessary verbosity
The code:
if(str === reverseString(str))
return true;
else
return false;
is clearer written as return str === reverseString(str);
, which says "return the logical result of comparing str
and its reversal".
Improve the regex to match your specification
Including spaces in your regex substitution to ""
is easier than .split(" ").join("")
. If you wish to remove all non-alphanumeric characters, a regex like /[^a-zd]/gi
reflects your written specification accurately (or use W
if you don't mind including underscores).
Style remarks
- JS uses K&R braces instead of Allman by convention.
- Add a blank line above
for
andif
blocks to ease vertical congestion. - Add a space around keywords and operators like
for(
and>=0
, which are clearer asfor (
and>= 0
. - No need for parentheses around a
return
value. array.push(str[i])
is missing a semicolon.- CodeReview's snippet autoformatter will automatically do most of this for you.
Rewrite 1
const palindrome = str =>
str = str.replace(/[^a-zd]/gi, "").toLowerCase();
return str === str.split("").reverse().join("");
;
console.log(palindrome("My age is 0, 0 si ega ym."));
Rewrite 2: uglier, but faster
Benchmark
const palindrome = str =>
str = str.replace(/[^a-zd]/gi, "").toLowerCase();
let left = 0;
let right = str.length;
while (left < right)
if (str[left++] !== str[--right])
return false;
return true;
;
[
"",
"a",
"aba",
"racecar",
"racecar ",
" racecar",
" race car",
" r r a c e c a rr ",
".a .. r . ... . .9f08e988-1e35-4dc6-a24a-5c7e03bce5ba$ $!ace ca r3 a",
].forEach(test => console.log(palindrome(test)));
console.log();
[
"ab",
"abc",
"racecars",
"racescar",
" ra scecar",
" r sace car",
"a r r a c e c a rr ",
" r r a c e c a rr a",
".a .. r . ... . .$$$ $!aces ca r a",
].forEach(test => console.log(palindrome(test)));
$endgroup$
$begingroup$
Good points, just to make sure is the time complexity O(n) because the reverse function traverses through each element of the array?
$endgroup$
– DreamVision2017
Mar 30 at 21:20
$begingroup$
Your code makes ~11 trips over then
-sized input, which is why I mention the high constant factor. If you do the replacement and lowercasing one time, you can get away with about 6 trips through the input. I count any array function, loop or===
as one trip over the input. This is a pretty minor concern relative to the other points, though, and addressing the style points accidentally improves your performance along the way.
$endgroup$
– ggorlen
Mar 30 at 21:30
1
$begingroup$
Small optimization for your rewrite, lowercase the string first and avoid the additional cost of a case-insensitive regex. There are larger optimizations that could also be done, but that make the code more complicated.
$endgroup$
– cbojar
Mar 31 at 0:06
1
$begingroup$
@Feathercrown==
/===
doesn't work on arrays, unfortunately, but good thought.
$endgroup$
– ggorlen
Mar 31 at 0:17
2
$begingroup$
Of course, the goal is to get an "easy to read" palindrome checker. Frankly, I doubt that the improvements to the efficiency of the method, impressive though they are, outweigh the looming disaster that would be maintaining or reading them.
$endgroup$
– Feathercrown
Mar 31 at 5:14
|
show 3 more comments
$begingroup$
Too much code.
- You can return a boolean
Note that the positions of and
if(str === reverseString(str))
return true;
else
return false;
Becomes
return str === reverseString(str);
You can remove whites spaces and commas etc with regExp
/W/g
Array has a reverse function which you can use rather than do it manually.
You should reverse the string in the function.
Strings are iterate-able so you can convert a string to an array with
[...str]
Example
function isPalindrome(str)
str = str.replace(/W/g,"").toLowerCase();
return str === [...str].reverse().join("");
$endgroup$
$begingroup$
Ah I see, btw I tried to code from scratch as much as possible to get better at problem solving/ programming. Although you are right that there are many JS methods that would make it easier to implement a solution.
$endgroup$
– DreamVision2017
Mar 30 at 21:31
add a comment |
$begingroup$
The line to scrub punctuation and spaces could be simplified from:
str = str.replace(/[^ws]|_/g, "").toLowerCase().split(" ").join("");
to:
str = str.replace(/[^w]|_/g, "").toLowerCase();
Essentially, your original regex marks spaces as legal characters, which you're then going and later scrubbing out with .split(" ").join("")
. By excluding the s
in your regex, you cause the regex to match spaces in the string, which would then be replaced along with the punctuation in the str.replace method. See this regex101.
I'd also ask you to consider what it means to be a palindrome. Words like racecar
. The way you're currently doing it is by reversing the string, and then checking equality. I suggest it could be half (worst case) or O(1) (best case) the complexity if you'd think about how you could check the front and the back of the string at the same time. I won't give you the code how to do this, but I'll outline the algorithm. Consider the word Urithiru
, a faster way to check palindrome-ness would to be doing something like this: Take the first and last letters, compare them, if true, then grab the next in sequence (next from the start; next from reverse). Essentially the program would evaluate it in these steps:
u
==u
: truer
==r
: truei
==i
: truet
==h
: false
Words like Urithiru
and palindromes have the worst complexity cases for the algorithm because every letter must be checked to prove it's a palidrome. However, if you checked a work like supercalifragilisticexpialidocious
, it'd only take two iterations, and then most words in the English language (the ones that don't start and end with the same letters), would be an O(1) result. For instance, English
would fail after the first comparison.
$endgroup$
add a comment |
$begingroup$
I would suggest separating out the code to remove punctuation and convert to lowercase into a separate function (normalizeString
), and make the reverseString
and isPalindrome
functions "purer". (This follows the Single Responsibility Principle.)
function reverseString(str)
var array = [];
for(var i = str.length - 1; i >= 0; --i)
array.push(str[i]);
return(array.join(""));
function isPalindrome(str)
let left = 0;
let right = str.length;
while (left < right)
if (str[left++] !== str[--right])
return false;
return true;
;
function normalizeString(str)
return str.replace(/[^ws]
// reverseString(normalizeString(...));
// isPalindrome(normalizeString(...));
$endgroup$
$begingroup$
Ok, but I'm a little confused on why you used the while loop on your palindrome function, when you can use the reverseString or array.reverse() to compare both strings? It's actually why I created that function.
$endgroup$
– DreamVision2017
Mar 31 at 17:30
$begingroup$
@DreamVision2017 For efficiency: thisisPalindrome
implementation can stop as soon as it finds a pair of characters that don't match.
$endgroup$
– Solomon Ucko
Mar 31 at 17:31
add a comment |
$begingroup$
The main contribution of this answer is to use toLowerCase()
before the regex, so the regex does less work. Note that I don't know if that would benefit performance at all - profile it if you are curious.
// private implementation - separated for ease of testing
const _isPalindrome = x => x===[...x].reverse().join('');
const _alphanum = x => x.toLowerCase().replace(/[^a-zs]/g, '');
// public interface - combined for ease of use
const isPalindrome = x => _isPalindrome(_alphanum(x));
This may be unpopular, but I prefer terse/abstract argument names x
and y
over longer, more specific names. It's similar to using i
as a loop variable - it makes it easier to see the structure of the code.
$endgroup$
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "196"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodereview.stackexchange.com%2fquestions%2f216534%2feasy-to-read-palindrome-checker%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
5 Answers
5
active
oldest
votes
5 Answers
5
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
Time complexity
Your time complexity is linear but you can save a few traversals over the string and lower the constant factor as you improve readability. Checking whether a string is a palindrome can be done in one pass with two pointers at each end of the string (plus some conditionals for your special characters), but this gains speed at the expense of readability; I'd encourage a round of clean-up before going for optimizations.
Repeated code
Repeated code harms maintainability and readability. Notice that the line
str.replace(/[^ws]|_/g, "").toLowerCase().split(" ").join("");
appears in two places in the code. If you decide to change one to accept a different regex but forget to change the other one, you've introduced a potentially subtle bug into your program. Move this to its own function to avoid duplication.
Use accurate function names and use builtins
reverseString
is a confusing function: it does more than reversing a string as advertised: it also strips whitespace and punctuation, which would be very surprising if I called this function as a user of your library without knowing its internals. All functions should operate as black boxes that perform the task they claim to, nothing more or less.
The array prototype already has a reverse()
function, so there's no need to write this out by hand.
Avoid unnecessary verbosity
The code:
if(str === reverseString(str))
return true;
else
return false;
is clearer written as return str === reverseString(str);
, which says "return the logical result of comparing str
and its reversal".
Improve the regex to match your specification
Including spaces in your regex substitution to ""
is easier than .split(" ").join("")
. If you wish to remove all non-alphanumeric characters, a regex like /[^a-zd]/gi
reflects your written specification accurately (or use W
if you don't mind including underscores).
Style remarks
- JS uses K&R braces instead of Allman by convention.
- Add a blank line above
for
andif
blocks to ease vertical congestion. - Add a space around keywords and operators like
for(
and>=0
, which are clearer asfor (
and>= 0
. - No need for parentheses around a
return
value. array.push(str[i])
is missing a semicolon.- CodeReview's snippet autoformatter will automatically do most of this for you.
Rewrite 1
const palindrome = str =>
str = str.replace(/[^a-zd]/gi, "").toLowerCase();
return str === str.split("").reverse().join("");
;
console.log(palindrome("My age is 0, 0 si ega ym."));
Rewrite 2: uglier, but faster
Benchmark
const palindrome = str =>
str = str.replace(/[^a-zd]/gi, "").toLowerCase();
let left = 0;
let right = str.length;
while (left < right)
if (str[left++] !== str[--right])
return false;
return true;
;
[
"",
"a",
"aba",
"racecar",
"racecar ",
" racecar",
" race car",
" r r a c e c a rr ",
".a .. r . ... . .9f08e988-1e35-4dc6-a24a-5c7e03bce5ba$ $!ace ca r3 a",
].forEach(test => console.log(palindrome(test)));
console.log();
[
"ab",
"abc",
"racecars",
"racescar",
" ra scecar",
" r sace car",
"a r r a c e c a rr ",
" r r a c e c a rr a",
".a .. r . ... . .$$$ $!aces ca r a",
].forEach(test => console.log(palindrome(test)));
$endgroup$
$begingroup$
Good points, just to make sure is the time complexity O(n) because the reverse function traverses through each element of the array?
$endgroup$
– DreamVision2017
Mar 30 at 21:20
$begingroup$
Your code makes ~11 trips over then
-sized input, which is why I mention the high constant factor. If you do the replacement and lowercasing one time, you can get away with about 6 trips through the input. I count any array function, loop or===
as one trip over the input. This is a pretty minor concern relative to the other points, though, and addressing the style points accidentally improves your performance along the way.
$endgroup$
– ggorlen
Mar 30 at 21:30
1
$begingroup$
Small optimization for your rewrite, lowercase the string first and avoid the additional cost of a case-insensitive regex. There are larger optimizations that could also be done, but that make the code more complicated.
$endgroup$
– cbojar
Mar 31 at 0:06
1
$begingroup$
@Feathercrown==
/===
doesn't work on arrays, unfortunately, but good thought.
$endgroup$
– ggorlen
Mar 31 at 0:17
2
$begingroup$
Of course, the goal is to get an "easy to read" palindrome checker. Frankly, I doubt that the improvements to the efficiency of the method, impressive though they are, outweigh the looming disaster that would be maintaining or reading them.
$endgroup$
– Feathercrown
Mar 31 at 5:14
|
show 3 more comments
$begingroup$
Time complexity
Your time complexity is linear but you can save a few traversals over the string and lower the constant factor as you improve readability. Checking whether a string is a palindrome can be done in one pass with two pointers at each end of the string (plus some conditionals for your special characters), but this gains speed at the expense of readability; I'd encourage a round of clean-up before going for optimizations.
Repeated code
Repeated code harms maintainability and readability. Notice that the line
str.replace(/[^ws]|_/g, "").toLowerCase().split(" ").join("");
appears in two places in the code. If you decide to change one to accept a different regex but forget to change the other one, you've introduced a potentially subtle bug into your program. Move this to its own function to avoid duplication.
Use accurate function names and use builtins
reverseString
is a confusing function: it does more than reversing a string as advertised: it also strips whitespace and punctuation, which would be very surprising if I called this function as a user of your library without knowing its internals. All functions should operate as black boxes that perform the task they claim to, nothing more or less.
The array prototype already has a reverse()
function, so there's no need to write this out by hand.
Avoid unnecessary verbosity
The code:
if(str === reverseString(str))
return true;
else
return false;
is clearer written as return str === reverseString(str);
, which says "return the logical result of comparing str
and its reversal".
Improve the regex to match your specification
Including spaces in your regex substitution to ""
is easier than .split(" ").join("")
. If you wish to remove all non-alphanumeric characters, a regex like /[^a-zd]/gi
reflects your written specification accurately (or use W
if you don't mind including underscores).
Style remarks
- JS uses K&R braces instead of Allman by convention.
- Add a blank line above
for
andif
blocks to ease vertical congestion. - Add a space around keywords and operators like
for(
and>=0
, which are clearer asfor (
and>= 0
. - No need for parentheses around a
return
value. array.push(str[i])
is missing a semicolon.- CodeReview's snippet autoformatter will automatically do most of this for you.
Rewrite 1
const palindrome = str =>
str = str.replace(/[^a-zd]/gi, "").toLowerCase();
return str === str.split("").reverse().join("");
;
console.log(palindrome("My age is 0, 0 si ega ym."));
Rewrite 2: uglier, but faster
Benchmark
const palindrome = str =>
str = str.replace(/[^a-zd]/gi, "").toLowerCase();
let left = 0;
let right = str.length;
while (left < right)
if (str[left++] !== str[--right])
return false;
return true;
;
[
"",
"a",
"aba",
"racecar",
"racecar ",
" racecar",
" race car",
" r r a c e c a rr ",
".a .. r . ... . .9f08e988-1e35-4dc6-a24a-5c7e03bce5ba$ $!ace ca r3 a",
].forEach(test => console.log(palindrome(test)));
console.log();
[
"ab",
"abc",
"racecars",
"racescar",
" ra scecar",
" r sace car",
"a r r a c e c a rr ",
" r r a c e c a rr a",
".a .. r . ... . .$$$ $!aces ca r a",
].forEach(test => console.log(palindrome(test)));
$endgroup$
$begingroup$
Good points, just to make sure is the time complexity O(n) because the reverse function traverses through each element of the array?
$endgroup$
– DreamVision2017
Mar 30 at 21:20
$begingroup$
Your code makes ~11 trips over then
-sized input, which is why I mention the high constant factor. If you do the replacement and lowercasing one time, you can get away with about 6 trips through the input. I count any array function, loop or===
as one trip over the input. This is a pretty minor concern relative to the other points, though, and addressing the style points accidentally improves your performance along the way.
$endgroup$
– ggorlen
Mar 30 at 21:30
1
$begingroup$
Small optimization for your rewrite, lowercase the string first and avoid the additional cost of a case-insensitive regex. There are larger optimizations that could also be done, but that make the code more complicated.
$endgroup$
– cbojar
Mar 31 at 0:06
1
$begingroup$
@Feathercrown==
/===
doesn't work on arrays, unfortunately, but good thought.
$endgroup$
– ggorlen
Mar 31 at 0:17
2
$begingroup$
Of course, the goal is to get an "easy to read" palindrome checker. Frankly, I doubt that the improvements to the efficiency of the method, impressive though they are, outweigh the looming disaster that would be maintaining or reading them.
$endgroup$
– Feathercrown
Mar 31 at 5:14
|
show 3 more comments
$begingroup$
Time complexity
Your time complexity is linear but you can save a few traversals over the string and lower the constant factor as you improve readability. Checking whether a string is a palindrome can be done in one pass with two pointers at each end of the string (plus some conditionals for your special characters), but this gains speed at the expense of readability; I'd encourage a round of clean-up before going for optimizations.
Repeated code
Repeated code harms maintainability and readability. Notice that the line
str.replace(/[^ws]|_/g, "").toLowerCase().split(" ").join("");
appears in two places in the code. If you decide to change one to accept a different regex but forget to change the other one, you've introduced a potentially subtle bug into your program. Move this to its own function to avoid duplication.
Use accurate function names and use builtins
reverseString
is a confusing function: it does more than reversing a string as advertised: it also strips whitespace and punctuation, which would be very surprising if I called this function as a user of your library without knowing its internals. All functions should operate as black boxes that perform the task they claim to, nothing more or less.
The array prototype already has a reverse()
function, so there's no need to write this out by hand.
Avoid unnecessary verbosity
The code:
if(str === reverseString(str))
return true;
else
return false;
is clearer written as return str === reverseString(str);
, which says "return the logical result of comparing str
and its reversal".
Improve the regex to match your specification
Including spaces in your regex substitution to ""
is easier than .split(" ").join("")
. If you wish to remove all non-alphanumeric characters, a regex like /[^a-zd]/gi
reflects your written specification accurately (or use W
if you don't mind including underscores).
Style remarks
- JS uses K&R braces instead of Allman by convention.
- Add a blank line above
for
andif
blocks to ease vertical congestion. - Add a space around keywords and operators like
for(
and>=0
, which are clearer asfor (
and>= 0
. - No need for parentheses around a
return
value. array.push(str[i])
is missing a semicolon.- CodeReview's snippet autoformatter will automatically do most of this for you.
Rewrite 1
const palindrome = str =>
str = str.replace(/[^a-zd]/gi, "").toLowerCase();
return str === str.split("").reverse().join("");
;
console.log(palindrome("My age is 0, 0 si ega ym."));
Rewrite 2: uglier, but faster
Benchmark
const palindrome = str =>
str = str.replace(/[^a-zd]/gi, "").toLowerCase();
let left = 0;
let right = str.length;
while (left < right)
if (str[left++] !== str[--right])
return false;
return true;
;
[
"",
"a",
"aba",
"racecar",
"racecar ",
" racecar",
" race car",
" r r a c e c a rr ",
".a .. r . ... . .9f08e988-1e35-4dc6-a24a-5c7e03bce5ba$ $!ace ca r3 a",
].forEach(test => console.log(palindrome(test)));
console.log();
[
"ab",
"abc",
"racecars",
"racescar",
" ra scecar",
" r sace car",
"a r r a c e c a rr ",
" r r a c e c a rr a",
".a .. r . ... . .$$$ $!aces ca r a",
].forEach(test => console.log(palindrome(test)));
$endgroup$
Time complexity
Your time complexity is linear but you can save a few traversals over the string and lower the constant factor as you improve readability. Checking whether a string is a palindrome can be done in one pass with two pointers at each end of the string (plus some conditionals for your special characters), but this gains speed at the expense of readability; I'd encourage a round of clean-up before going for optimizations.
Repeated code
Repeated code harms maintainability and readability. Notice that the line
str.replace(/[^ws]|_/g, "").toLowerCase().split(" ").join("");
appears in two places in the code. If you decide to change one to accept a different regex but forget to change the other one, you've introduced a potentially subtle bug into your program. Move this to its own function to avoid duplication.
Use accurate function names and use builtins
reverseString
is a confusing function: it does more than reversing a string as advertised: it also strips whitespace and punctuation, which would be very surprising if I called this function as a user of your library without knowing its internals. All functions should operate as black boxes that perform the task they claim to, nothing more or less.
The array prototype already has a reverse()
function, so there's no need to write this out by hand.
Avoid unnecessary verbosity
The code:
if(str === reverseString(str))
return true;
else
return false;
is clearer written as return str === reverseString(str);
, which says "return the logical result of comparing str
and its reversal".
Improve the regex to match your specification
Including spaces in your regex substitution to ""
is easier than .split(" ").join("")
. If you wish to remove all non-alphanumeric characters, a regex like /[^a-zd]/gi
reflects your written specification accurately (or use W
if you don't mind including underscores).
Style remarks
- JS uses K&R braces instead of Allman by convention.
- Add a blank line above
for
andif
blocks to ease vertical congestion. - Add a space around keywords and operators like
for(
and>=0
, which are clearer asfor (
and>= 0
. - No need for parentheses around a
return
value. array.push(str[i])
is missing a semicolon.- CodeReview's snippet autoformatter will automatically do most of this for you.
Rewrite 1
const palindrome = str =>
str = str.replace(/[^a-zd]/gi, "").toLowerCase();
return str === str.split("").reverse().join("");
;
console.log(palindrome("My age is 0, 0 si ega ym."));
Rewrite 2: uglier, but faster
Benchmark
const palindrome = str =>
str = str.replace(/[^a-zd]/gi, "").toLowerCase();
let left = 0;
let right = str.length;
while (left < right)
if (str[left++] !== str[--right])
return false;
return true;
;
[
"",
"a",
"aba",
"racecar",
"racecar ",
" racecar",
" race car",
" r r a c e c a rr ",
".a .. r . ... . .9f08e988-1e35-4dc6-a24a-5c7e03bce5ba$ $!ace ca r3 a",
].forEach(test => console.log(palindrome(test)));
console.log();
[
"ab",
"abc",
"racecars",
"racescar",
" ra scecar",
" r sace car",
"a r r a c e c a rr ",
" r r a c e c a rr a",
".a .. r . ... . .$$$ $!aces ca r a",
].forEach(test => console.log(palindrome(test)));
const palindrome = str =>
str = str.replace(/[^a-zd]/gi, "").toLowerCase();
return str === str.split("").reverse().join("");
;
console.log(palindrome("My age is 0, 0 si ega ym."));
const palindrome = str =>
str = str.replace(/[^a-zd]/gi, "").toLowerCase();
return str === str.split("").reverse().join("");
;
console.log(palindrome("My age is 0, 0 si ega ym."));
const palindrome = str =>
str = str.replace(/[^a-zd]/gi, "").toLowerCase();
let left = 0;
let right = str.length;
while (left < right)
if (str[left++] !== str[--right])
return false;
return true;
;
[
"",
"a",
"aba",
"racecar",
"racecar ",
" racecar",
" race car",
" r r a c e c a rr ",
".a .. r . ... . .9f08e988-1e35-4dc6-a24a-5c7e03bce5ba$ $!ace ca r3 a",
].forEach(test => console.log(palindrome(test)));
console.log();
[
"ab",
"abc",
"racecars",
"racescar",
" ra scecar",
" r sace car",
"a r r a c e c a rr ",
" r r a c e c a rr a",
".a .. r . ... . .$$$ $!aces ca r a",
].forEach(test => console.log(palindrome(test)));
const palindrome = str =>
str = str.replace(/[^a-zd]/gi, "").toLowerCase();
let left = 0;
let right = str.length;
while (left < right)
if (str[left++] !== str[--right])
return false;
return true;
;
[
"",
"a",
"aba",
"racecar",
"racecar ",
" racecar",
" race car",
" r r a c e c a rr ",
".a .. r . ... . .9f08e988-1e35-4dc6-a24a-5c7e03bce5ba$ $!ace ca r3 a",
].forEach(test => console.log(palindrome(test)));
console.log();
[
"ab",
"abc",
"racecars",
"racescar",
" ra scecar",
" r sace car",
"a r r a c e c a rr ",
" r r a c e c a rr a",
".a .. r . ... . .$$$ $!aces ca r a",
].forEach(test => console.log(palindrome(test)));
edited Mar 31 at 2:02
answered Mar 30 at 20:22
ggorlenggorlen
651314
651314
$begingroup$
Good points, just to make sure is the time complexity O(n) because the reverse function traverses through each element of the array?
$endgroup$
– DreamVision2017
Mar 30 at 21:20
$begingroup$
Your code makes ~11 trips over then
-sized input, which is why I mention the high constant factor. If you do the replacement and lowercasing one time, you can get away with about 6 trips through the input. I count any array function, loop or===
as one trip over the input. This is a pretty minor concern relative to the other points, though, and addressing the style points accidentally improves your performance along the way.
$endgroup$
– ggorlen
Mar 30 at 21:30
1
$begingroup$
Small optimization for your rewrite, lowercase the string first and avoid the additional cost of a case-insensitive regex. There are larger optimizations that could also be done, but that make the code more complicated.
$endgroup$
– cbojar
Mar 31 at 0:06
1
$begingroup$
@Feathercrown==
/===
doesn't work on arrays, unfortunately, but good thought.
$endgroup$
– ggorlen
Mar 31 at 0:17
2
$begingroup$
Of course, the goal is to get an "easy to read" palindrome checker. Frankly, I doubt that the improvements to the efficiency of the method, impressive though they are, outweigh the looming disaster that would be maintaining or reading them.
$endgroup$
– Feathercrown
Mar 31 at 5:14
|
show 3 more comments
$begingroup$
Good points, just to make sure is the time complexity O(n) because the reverse function traverses through each element of the array?
$endgroup$
– DreamVision2017
Mar 30 at 21:20
$begingroup$
Your code makes ~11 trips over then
-sized input, which is why I mention the high constant factor. If you do the replacement and lowercasing one time, you can get away with about 6 trips through the input. I count any array function, loop or===
as one trip over the input. This is a pretty minor concern relative to the other points, though, and addressing the style points accidentally improves your performance along the way.
$endgroup$
– ggorlen
Mar 30 at 21:30
1
$begingroup$
Small optimization for your rewrite, lowercase the string first and avoid the additional cost of a case-insensitive regex. There are larger optimizations that could also be done, but that make the code more complicated.
$endgroup$
– cbojar
Mar 31 at 0:06
1
$begingroup$
@Feathercrown==
/===
doesn't work on arrays, unfortunately, but good thought.
$endgroup$
– ggorlen
Mar 31 at 0:17
2
$begingroup$
Of course, the goal is to get an "easy to read" palindrome checker. Frankly, I doubt that the improvements to the efficiency of the method, impressive though they are, outweigh the looming disaster that would be maintaining or reading them.
$endgroup$
– Feathercrown
Mar 31 at 5:14
$begingroup$
Good points, just to make sure is the time complexity O(n) because the reverse function traverses through each element of the array?
$endgroup$
– DreamVision2017
Mar 30 at 21:20
$begingroup$
Good points, just to make sure is the time complexity O(n) because the reverse function traverses through each element of the array?
$endgroup$
– DreamVision2017
Mar 30 at 21:20
$begingroup$
Your code makes ~11 trips over the
n
-sized input, which is why I mention the high constant factor. If you do the replacement and lowercasing one time, you can get away with about 6 trips through the input. I count any array function, loop or ===
as one trip over the input. This is a pretty minor concern relative to the other points, though, and addressing the style points accidentally improves your performance along the way.$endgroup$
– ggorlen
Mar 30 at 21:30
$begingroup$
Your code makes ~11 trips over the
n
-sized input, which is why I mention the high constant factor. If you do the replacement and lowercasing one time, you can get away with about 6 trips through the input. I count any array function, loop or ===
as one trip over the input. This is a pretty minor concern relative to the other points, though, and addressing the style points accidentally improves your performance along the way.$endgroup$
– ggorlen
Mar 30 at 21:30
1
1
$begingroup$
Small optimization for your rewrite, lowercase the string first and avoid the additional cost of a case-insensitive regex. There are larger optimizations that could also be done, but that make the code more complicated.
$endgroup$
– cbojar
Mar 31 at 0:06
$begingroup$
Small optimization for your rewrite, lowercase the string first and avoid the additional cost of a case-insensitive regex. There are larger optimizations that could also be done, but that make the code more complicated.
$endgroup$
– cbojar
Mar 31 at 0:06
1
1
$begingroup$
@Feathercrown
==
/===
doesn't work on arrays, unfortunately, but good thought.$endgroup$
– ggorlen
Mar 31 at 0:17
$begingroup$
@Feathercrown
==
/===
doesn't work on arrays, unfortunately, but good thought.$endgroup$
– ggorlen
Mar 31 at 0:17
2
2
$begingroup$
Of course, the goal is to get an "easy to read" palindrome checker. Frankly, I doubt that the improvements to the efficiency of the method, impressive though they are, outweigh the looming disaster that would be maintaining or reading them.
$endgroup$
– Feathercrown
Mar 31 at 5:14
$begingroup$
Of course, the goal is to get an "easy to read" palindrome checker. Frankly, I doubt that the improvements to the efficiency of the method, impressive though they are, outweigh the looming disaster that would be maintaining or reading them.
$endgroup$
– Feathercrown
Mar 31 at 5:14
|
show 3 more comments
$begingroup$
Too much code.
- You can return a boolean
Note that the positions of and
if(str === reverseString(str))
return true;
else
return false;
Becomes
return str === reverseString(str);
You can remove whites spaces and commas etc with regExp
/W/g
Array has a reverse function which you can use rather than do it manually.
You should reverse the string in the function.
Strings are iterate-able so you can convert a string to an array with
[...str]
Example
function isPalindrome(str)
str = str.replace(/W/g,"").toLowerCase();
return str === [...str].reverse().join("");
$endgroup$
$begingroup$
Ah I see, btw I tried to code from scratch as much as possible to get better at problem solving/ programming. Although you are right that there are many JS methods that would make it easier to implement a solution.
$endgroup$
– DreamVision2017
Mar 30 at 21:31
add a comment |
$begingroup$
Too much code.
- You can return a boolean
Note that the positions of and
if(str === reverseString(str))
return true;
else
return false;
Becomes
return str === reverseString(str);
You can remove whites spaces and commas etc with regExp
/W/g
Array has a reverse function which you can use rather than do it manually.
You should reverse the string in the function.
Strings are iterate-able so you can convert a string to an array with
[...str]
Example
function isPalindrome(str)
str = str.replace(/W/g,"").toLowerCase();
return str === [...str].reverse().join("");
$endgroup$
$begingroup$
Ah I see, btw I tried to code from scratch as much as possible to get better at problem solving/ programming. Although you are right that there are many JS methods that would make it easier to implement a solution.
$endgroup$
– DreamVision2017
Mar 30 at 21:31
add a comment |
$begingroup$
Too much code.
- You can return a boolean
Note that the positions of and
if(str === reverseString(str))
return true;
else
return false;
Becomes
return str === reverseString(str);
You can remove whites spaces and commas etc with regExp
/W/g
Array has a reverse function which you can use rather than do it manually.
You should reverse the string in the function.
Strings are iterate-able so you can convert a string to an array with
[...str]
Example
function isPalindrome(str)
str = str.replace(/W/g,"").toLowerCase();
return str === [...str].reverse().join("");
$endgroup$
Too much code.
- You can return a boolean
Note that the positions of and
if(str === reverseString(str))
return true;
else
return false;
Becomes
return str === reverseString(str);
You can remove whites spaces and commas etc with regExp
/W/g
Array has a reverse function which you can use rather than do it manually.
You should reverse the string in the function.
Strings are iterate-able so you can convert a string to an array with
[...str]
Example
function isPalindrome(str)
str = str.replace(/W/g,"").toLowerCase();
return str === [...str].reverse().join("");
answered Mar 30 at 20:34
Blindman67Blindman67
9,4551622
9,4551622
$begingroup$
Ah I see, btw I tried to code from scratch as much as possible to get better at problem solving/ programming. Although you are right that there are many JS methods that would make it easier to implement a solution.
$endgroup$
– DreamVision2017
Mar 30 at 21:31
add a comment |
$begingroup$
Ah I see, btw I tried to code from scratch as much as possible to get better at problem solving/ programming. Although you are right that there are many JS methods that would make it easier to implement a solution.
$endgroup$
– DreamVision2017
Mar 30 at 21:31
$begingroup$
Ah I see, btw I tried to code from scratch as much as possible to get better at problem solving/ programming. Although you are right that there are many JS methods that would make it easier to implement a solution.
$endgroup$
– DreamVision2017
Mar 30 at 21:31
$begingroup$
Ah I see, btw I tried to code from scratch as much as possible to get better at problem solving/ programming. Although you are right that there are many JS methods that would make it easier to implement a solution.
$endgroup$
– DreamVision2017
Mar 30 at 21:31
add a comment |
$begingroup$
The line to scrub punctuation and spaces could be simplified from:
str = str.replace(/[^ws]|_/g, "").toLowerCase().split(" ").join("");
to:
str = str.replace(/[^w]|_/g, "").toLowerCase();
Essentially, your original regex marks spaces as legal characters, which you're then going and later scrubbing out with .split(" ").join("")
. By excluding the s
in your regex, you cause the regex to match spaces in the string, which would then be replaced along with the punctuation in the str.replace method. See this regex101.
I'd also ask you to consider what it means to be a palindrome. Words like racecar
. The way you're currently doing it is by reversing the string, and then checking equality. I suggest it could be half (worst case) or O(1) (best case) the complexity if you'd think about how you could check the front and the back of the string at the same time. I won't give you the code how to do this, but I'll outline the algorithm. Consider the word Urithiru
, a faster way to check palindrome-ness would to be doing something like this: Take the first and last letters, compare them, if true, then grab the next in sequence (next from the start; next from reverse). Essentially the program would evaluate it in these steps:
u
==u
: truer
==r
: truei
==i
: truet
==h
: false
Words like Urithiru
and palindromes have the worst complexity cases for the algorithm because every letter must be checked to prove it's a palidrome. However, if you checked a work like supercalifragilisticexpialidocious
, it'd only take two iterations, and then most words in the English language (the ones that don't start and end with the same letters), would be an O(1) result. For instance, English
would fail after the first comparison.
$endgroup$
add a comment |
$begingroup$
The line to scrub punctuation and spaces could be simplified from:
str = str.replace(/[^ws]|_/g, "").toLowerCase().split(" ").join("");
to:
str = str.replace(/[^w]|_/g, "").toLowerCase();
Essentially, your original regex marks spaces as legal characters, which you're then going and later scrubbing out with .split(" ").join("")
. By excluding the s
in your regex, you cause the regex to match spaces in the string, which would then be replaced along with the punctuation in the str.replace method. See this regex101.
I'd also ask you to consider what it means to be a palindrome. Words like racecar
. The way you're currently doing it is by reversing the string, and then checking equality. I suggest it could be half (worst case) or O(1) (best case) the complexity if you'd think about how you could check the front and the back of the string at the same time. I won't give you the code how to do this, but I'll outline the algorithm. Consider the word Urithiru
, a faster way to check palindrome-ness would to be doing something like this: Take the first and last letters, compare them, if true, then grab the next in sequence (next from the start; next from reverse). Essentially the program would evaluate it in these steps:
u
==u
: truer
==r
: truei
==i
: truet
==h
: false
Words like Urithiru
and palindromes have the worst complexity cases for the algorithm because every letter must be checked to prove it's a palidrome. However, if you checked a work like supercalifragilisticexpialidocious
, it'd only take two iterations, and then most words in the English language (the ones that don't start and end with the same letters), would be an O(1) result. For instance, English
would fail after the first comparison.
$endgroup$
add a comment |
$begingroup$
The line to scrub punctuation and spaces could be simplified from:
str = str.replace(/[^ws]|_/g, "").toLowerCase().split(" ").join("");
to:
str = str.replace(/[^w]|_/g, "").toLowerCase();
Essentially, your original regex marks spaces as legal characters, which you're then going and later scrubbing out with .split(" ").join("")
. By excluding the s
in your regex, you cause the regex to match spaces in the string, which would then be replaced along with the punctuation in the str.replace method. See this regex101.
I'd also ask you to consider what it means to be a palindrome. Words like racecar
. The way you're currently doing it is by reversing the string, and then checking equality. I suggest it could be half (worst case) or O(1) (best case) the complexity if you'd think about how you could check the front and the back of the string at the same time. I won't give you the code how to do this, but I'll outline the algorithm. Consider the word Urithiru
, a faster way to check palindrome-ness would to be doing something like this: Take the first and last letters, compare them, if true, then grab the next in sequence (next from the start; next from reverse). Essentially the program would evaluate it in these steps:
u
==u
: truer
==r
: truei
==i
: truet
==h
: false
Words like Urithiru
and palindromes have the worst complexity cases for the algorithm because every letter must be checked to prove it's a palidrome. However, if you checked a work like supercalifragilisticexpialidocious
, it'd only take two iterations, and then most words in the English language (the ones that don't start and end with the same letters), would be an O(1) result. For instance, English
would fail after the first comparison.
$endgroup$
The line to scrub punctuation and spaces could be simplified from:
str = str.replace(/[^ws]|_/g, "").toLowerCase().split(" ").join("");
to:
str = str.replace(/[^w]|_/g, "").toLowerCase();
Essentially, your original regex marks spaces as legal characters, which you're then going and later scrubbing out with .split(" ").join("")
. By excluding the s
in your regex, you cause the regex to match spaces in the string, which would then be replaced along with the punctuation in the str.replace method. See this regex101.
I'd also ask you to consider what it means to be a palindrome. Words like racecar
. The way you're currently doing it is by reversing the string, and then checking equality. I suggest it could be half (worst case) or O(1) (best case) the complexity if you'd think about how you could check the front and the back of the string at the same time. I won't give you the code how to do this, but I'll outline the algorithm. Consider the word Urithiru
, a faster way to check palindrome-ness would to be doing something like this: Take the first and last letters, compare them, if true, then grab the next in sequence (next from the start; next from reverse). Essentially the program would evaluate it in these steps:
u
==u
: truer
==r
: truei
==i
: truet
==h
: false
Words like Urithiru
and palindromes have the worst complexity cases for the algorithm because every letter must be checked to prove it's a palidrome. However, if you checked a work like supercalifragilisticexpialidocious
, it'd only take two iterations, and then most words in the English language (the ones that don't start and end with the same letters), would be an O(1) result. For instance, English
would fail after the first comparison.
answered Mar 30 at 22:14
user138741user138741
1634
1634
add a comment |
add a comment |
$begingroup$
I would suggest separating out the code to remove punctuation and convert to lowercase into a separate function (normalizeString
), and make the reverseString
and isPalindrome
functions "purer". (This follows the Single Responsibility Principle.)
function reverseString(str)
var array = [];
for(var i = str.length - 1; i >= 0; --i)
array.push(str[i]);
return(array.join(""));
function isPalindrome(str)
let left = 0;
let right = str.length;
while (left < right)
if (str[left++] !== str[--right])
return false;
return true;
;
function normalizeString(str)
return str.replace(/[^ws]
// reverseString(normalizeString(...));
// isPalindrome(normalizeString(...));
$endgroup$
$begingroup$
Ok, but I'm a little confused on why you used the while loop on your palindrome function, when you can use the reverseString or array.reverse() to compare both strings? It's actually why I created that function.
$endgroup$
– DreamVision2017
Mar 31 at 17:30
$begingroup$
@DreamVision2017 For efficiency: thisisPalindrome
implementation can stop as soon as it finds a pair of characters that don't match.
$endgroup$
– Solomon Ucko
Mar 31 at 17:31
add a comment |
$begingroup$
I would suggest separating out the code to remove punctuation and convert to lowercase into a separate function (normalizeString
), and make the reverseString
and isPalindrome
functions "purer". (This follows the Single Responsibility Principle.)
function reverseString(str)
var array = [];
for(var i = str.length - 1; i >= 0; --i)
array.push(str[i]);
return(array.join(""));
function isPalindrome(str)
let left = 0;
let right = str.length;
while (left < right)
if (str[left++] !== str[--right])
return false;
return true;
;
function normalizeString(str)
return str.replace(/[^ws]
// reverseString(normalizeString(...));
// isPalindrome(normalizeString(...));
$endgroup$
$begingroup$
Ok, but I'm a little confused on why you used the while loop on your palindrome function, when you can use the reverseString or array.reverse() to compare both strings? It's actually why I created that function.
$endgroup$
– DreamVision2017
Mar 31 at 17:30
$begingroup$
@DreamVision2017 For efficiency: thisisPalindrome
implementation can stop as soon as it finds a pair of characters that don't match.
$endgroup$
– Solomon Ucko
Mar 31 at 17:31
add a comment |
$begingroup$
I would suggest separating out the code to remove punctuation and convert to lowercase into a separate function (normalizeString
), and make the reverseString
and isPalindrome
functions "purer". (This follows the Single Responsibility Principle.)
function reverseString(str)
var array = [];
for(var i = str.length - 1; i >= 0; --i)
array.push(str[i]);
return(array.join(""));
function isPalindrome(str)
let left = 0;
let right = str.length;
while (left < right)
if (str[left++] !== str[--right])
return false;
return true;
;
function normalizeString(str)
return str.replace(/[^ws]
// reverseString(normalizeString(...));
// isPalindrome(normalizeString(...));
$endgroup$
I would suggest separating out the code to remove punctuation and convert to lowercase into a separate function (normalizeString
), and make the reverseString
and isPalindrome
functions "purer". (This follows the Single Responsibility Principle.)
function reverseString(str)
var array = [];
for(var i = str.length - 1; i >= 0; --i)
array.push(str[i]);
return(array.join(""));
function isPalindrome(str)
let left = 0;
let right = str.length;
while (left < right)
if (str[left++] !== str[--right])
return false;
return true;
;
function normalizeString(str)
return str.replace(/[^ws]
// reverseString(normalizeString(...));
// isPalindrome(normalizeString(...));
answered Mar 31 at 15:30
Solomon UckoSolomon Ucko
1,1871415
1,1871415
$begingroup$
Ok, but I'm a little confused on why you used the while loop on your palindrome function, when you can use the reverseString or array.reverse() to compare both strings? It's actually why I created that function.
$endgroup$
– DreamVision2017
Mar 31 at 17:30
$begingroup$
@DreamVision2017 For efficiency: thisisPalindrome
implementation can stop as soon as it finds a pair of characters that don't match.
$endgroup$
– Solomon Ucko
Mar 31 at 17:31
add a comment |
$begingroup$
Ok, but I'm a little confused on why you used the while loop on your palindrome function, when you can use the reverseString or array.reverse() to compare both strings? It's actually why I created that function.
$endgroup$
– DreamVision2017
Mar 31 at 17:30
$begingroup$
@DreamVision2017 For efficiency: thisisPalindrome
implementation can stop as soon as it finds a pair of characters that don't match.
$endgroup$
– Solomon Ucko
Mar 31 at 17:31
$begingroup$
Ok, but I'm a little confused on why you used the while loop on your palindrome function, when you can use the reverseString or array.reverse() to compare both strings? It's actually why I created that function.
$endgroup$
– DreamVision2017
Mar 31 at 17:30
$begingroup$
Ok, but I'm a little confused on why you used the while loop on your palindrome function, when you can use the reverseString or array.reverse() to compare both strings? It's actually why I created that function.
$endgroup$
– DreamVision2017
Mar 31 at 17:30
$begingroup$
@DreamVision2017 For efficiency: this
isPalindrome
implementation can stop as soon as it finds a pair of characters that don't match.$endgroup$
– Solomon Ucko
Mar 31 at 17:31
$begingroup$
@DreamVision2017 For efficiency: this
isPalindrome
implementation can stop as soon as it finds a pair of characters that don't match.$endgroup$
– Solomon Ucko
Mar 31 at 17:31
add a comment |
$begingroup$
The main contribution of this answer is to use toLowerCase()
before the regex, so the regex does less work. Note that I don't know if that would benefit performance at all - profile it if you are curious.
// private implementation - separated for ease of testing
const _isPalindrome = x => x===[...x].reverse().join('');
const _alphanum = x => x.toLowerCase().replace(/[^a-zs]/g, '');
// public interface - combined for ease of use
const isPalindrome = x => _isPalindrome(_alphanum(x));
This may be unpopular, but I prefer terse/abstract argument names x
and y
over longer, more specific names. It's similar to using i
as a loop variable - it makes it easier to see the structure of the code.
$endgroup$
add a comment |
$begingroup$
The main contribution of this answer is to use toLowerCase()
before the regex, so the regex does less work. Note that I don't know if that would benefit performance at all - profile it if you are curious.
// private implementation - separated for ease of testing
const _isPalindrome = x => x===[...x].reverse().join('');
const _alphanum = x => x.toLowerCase().replace(/[^a-zs]/g, '');
// public interface - combined for ease of use
const isPalindrome = x => _isPalindrome(_alphanum(x));
This may be unpopular, but I prefer terse/abstract argument names x
and y
over longer, more specific names. It's similar to using i
as a loop variable - it makes it easier to see the structure of the code.
$endgroup$
add a comment |
$begingroup$
The main contribution of this answer is to use toLowerCase()
before the regex, so the regex does less work. Note that I don't know if that would benefit performance at all - profile it if you are curious.
// private implementation - separated for ease of testing
const _isPalindrome = x => x===[...x].reverse().join('');
const _alphanum = x => x.toLowerCase().replace(/[^a-zs]/g, '');
// public interface - combined for ease of use
const isPalindrome = x => _isPalindrome(_alphanum(x));
This may be unpopular, but I prefer terse/abstract argument names x
and y
over longer, more specific names. It's similar to using i
as a loop variable - it makes it easier to see the structure of the code.
$endgroup$
The main contribution of this answer is to use toLowerCase()
before the regex, so the regex does less work. Note that I don't know if that would benefit performance at all - profile it if you are curious.
// private implementation - separated for ease of testing
const _isPalindrome = x => x===[...x].reverse().join('');
const _alphanum = x => x.toLowerCase().replace(/[^a-zs]/g, '');
// public interface - combined for ease of use
const isPalindrome = x => _isPalindrome(_alphanum(x));
This may be unpopular, but I prefer terse/abstract argument names x
and y
over longer, more specific names. It's similar to using i
as a loop variable - it makes it easier to see the structure of the code.
answered Mar 31 at 17:16
hoosierEEhoosierEE
3521213
3521213
add a comment |
add a comment |
Thanks for contributing an answer to Code Review Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodereview.stackexchange.com%2fquestions%2f216534%2feasy-to-read-palindrome-checker%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
$begingroup$
Are you sure this is working as intended?
$endgroup$
– Mast
Mar 30 at 18:38
$begingroup$
The test
reverseString("My age is 0, 0 si ega ym.");
should at least be something likeconsole.log(palindrome(reverseString("My age is 0, 0 si ega ym.")));
, and does your challenge ignore spaces? Because if they don't, your example string should return false while it doesn't. Please clarify the exact challenge.$endgroup$
– Mast
Mar 30 at 18:42