997 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			997 B
		
	
	
	
	
	
	
	
id, challengeType, title, forumTopicId
| id | challengeType | title | forumTopicId | 
|---|---|---|---|
| 5900f4181000cf542c50ff2a | 5 | 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