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>
1013 B
1013 B
id, challengeType, isHidden, title, forumTopicId
id | challengeType | isHidden | title | forumTopicId |
---|---|---|---|---|
5900f4181000cf542c50ff2a | 5 | false | Problem 171: Finding numbers for which the sum of the squares of the digits is a square | 301806 |
Description
Instructions
Tests
tests:
- text: <code>euler171()</code> should return 142989277.
testString: assert.strictEqual(euler171(), 142989277);
Challenge Seed
function euler171() {
// Good luck!
return true;
}
euler171();
Solution
// solution required