Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> Co-authored-by: Kristofer Koishigawa <scissorsneedfoodtoo@gmail.com> Co-authored-by: Beau Carnes <beaucarnes@gmail.com>
1.4 KiB
1.4 KiB
id, challengeType, isHidden, title, forumTopicId
id | challengeType | isHidden | title | forumTopicId |
---|---|---|---|---|
5900f3f91000cf542c50ff0b | 5 | false | Problem 141: Investigating progressive numbers, n, which are also square | 301770 |
Description
Instructions
Tests
tests:
- text: <code>euler141()</code> should return 878454337159.
testString: assert.strictEqual(euler141(), 878454337159);
Challenge Seed
function euler141() {
// Good luck!
return true;
}
euler141();
Solution
// solution required