patternjavascriptMinor
Project Euler #55 - Lychrel numbers
Viewed 0 times
projectlychreleulernumbers
Problem
If we take 47, reverse and add, 47 + 74 = 121, which is palindromic.
Not all numbers produce palindromes so quickly. For example,
349 + 943 = 1292,
1292 + 2921 = 4213
4213 + 3124 = 7337
That is, 349 took three iterations to arrive at a palindrome.
Although no one has proved it yet, it is thought that some numbers, like 196, never produce a palindrome. A number that never forms a palindrome through the reverse and add process is called a Lychrel number. Due to the theoretical nature of these numbers, and for the purpose of this problem, we shall assume that a number is Lychrel until proven otherwise. In addition you are given that for every number below ten-thousand, it will either (i) become a palindrome in less than fifty iterations, or, (ii) no one, with all the computing power that exists, has managed so far to map it to a palindrome. In fact, 10677 is the first number to be shown to require over fifty iterations before producing a palindrome: 4668731596684224866951378664 (53 iterations, 28-digits).
Surprisingly, there are palindromic numbers that are themselves Lychrel numbers; the first example is 4994.
How many Lychrel numbers are there below ten-thousand?
This code works with NodeJS. It is also using ES6 features.
So no SpiderMonkey nonsense now.
Any and all feedback is appreciated.
```
// Like Python's range.
function* range(start, stop, step){
if (arguments.length == 0){
start = 0;
stop = null;
}
if (arguments.length == 1){
stop = start;
start = 0;
}
if (arguments.length 0){
for (var number = start; number = stop; number += step){
yield number;
}
}
}
}
function is_palindrome(string){
var str_len = string.length - 1;
for (var index of range(string.length / 2)){
if (string[index] != string[str_len - index]){
return false;
}
}
return true;
}
functi
Not all numbers produce palindromes so quickly. For example,
349 + 943 = 1292,
1292 + 2921 = 4213
4213 + 3124 = 7337
That is, 349 took three iterations to arrive at a palindrome.
Although no one has proved it yet, it is thought that some numbers, like 196, never produce a palindrome. A number that never forms a palindrome through the reverse and add process is called a Lychrel number. Due to the theoretical nature of these numbers, and for the purpose of this problem, we shall assume that a number is Lychrel until proven otherwise. In addition you are given that for every number below ten-thousand, it will either (i) become a palindrome in less than fifty iterations, or, (ii) no one, with all the computing power that exists, has managed so far to map it to a palindrome. In fact, 10677 is the first number to be shown to require over fifty iterations before producing a palindrome: 4668731596684224866951378664 (53 iterations, 28-digits).
Surprisingly, there are palindromic numbers that are themselves Lychrel numbers; the first example is 4994.
How many Lychrel numbers are there below ten-thousand?
This code works with NodeJS. It is also using ES6 features.
So no SpiderMonkey nonsense now.
$ node -v
v0.12.7
$ node --harmony p55.js
249Any and all feedback is appreciated.
```
// Like Python's range.
function* range(start, stop, step){
if (arguments.length == 0){
start = 0;
stop = null;
}
if (arguments.length == 1){
stop = start;
start = 0;
}
if (arguments.length 0){
for (var number = start; number = stop; number += step){
yield number;
}
}
}
}
function is_palindrome(string){
var str_len = string.length - 1;
for (var index of range(string.length / 2)){
if (string[index] != string[str_len - index]){
return false;
}
}
return true;
}
functi
Solution
Typically in JavaScript, when calling
Not as a call from the
Also, by calling it the way that you did, you are being inconsistent. If you are going to call
The function
According to the MDN, you should always specify the radix parameter.
Why do you call
Calling this functions is just a waste.
In places like these:
and
You should be using the
-
It is good JavaScript practice.
-
It may be a little faster.
See this SO post for more information.
As shown in this SO post, a much, much simpler way to reverse a string would be to do this:
This could potentially be faster, too, as this is using JavaScript's built in functions/methods/features.
Your
Now, your
This is much more simple than whatever you were doing.
The naming case for JavaScript is
and
And, make sure you change the name of some of your variables to
You are putting too much work on your
Here, you check to see that if there is no
However, this check is going to happen every single iteration (since the function is recursive).
Is is really that difficult to just pass 50 to it in the initial time you call it in
isNaN, it is just typed:isNaN(...);Not as a call from the
Number class:Number.isNaN(...);Also, by calling it the way that you did, you are being inconsistent. If you are going to call
isNaN through Number, then why don't you also call parseInt through Number?The function
parseInt takes a second parameter radix which is the base of the first parameter.According to the MDN, you should always specify the radix parameter.
Why do you call
parseInt on the arguments of range? In every single point of your code where you are calling this function, you are passing numerical arguments.Calling this functions is just a waste.
In places like these:
if (arguments.length == 0){and
if (arguments.length == 1){You should be using the
=== comparison operator rather than the == comparison operator.-
It is good JavaScript practice.
-
It may be a little faster.
See this SO post for more information.
As shown in this SO post, a much, much simpler way to reverse a string would be to do this:
return string.split("").reverse().join("");This could potentially be faster, too, as this is using JavaScript's built in functions/methods/features.
Your
is_palindrome function confuses me a little. A palindrome is defined as a word that is spelled the exact same as it's reverse. Therefore, why aren't you using the reverse function that you already made?Now, your
is_palindrome function becomes this:return string == reverse(string);This is much more simple than whatever you were doing.
The naming case for JavaScript is
camelCase, not snake_case. You need to change the name of these functions:is_palindrome --> isPalindromeand
is_lychrel --> isLychrelAnd, make sure you change the name of some of your variables to
camelCase too.You are putting too much work on your
isLychrel function.Here, you check to see that if there is no
recursions specified, set it to 50:if (arguments.length == 1)
recursions = 50;However, this check is going to happen every single iteration (since the function is recursive).
Is is really that difficult to just pass 50 to it in the initial time you call it in
main? If you did this and removed the check from the function, this could greatly improve your performance.Code Snippets
isNaN(...);Number.isNaN(...);if (arguments.length == 0){if (arguments.length == 1){return string.split("").reverse().join("");Context
StackExchange Code Review Q#96710, answer score: 5
Revisions (0)
No revisions yet.