* fix(curriculum): tests quotes * fix(curriculum): fill seed-teardown * fix(curriculum): fix tests and remove unneeded seed-teardown
		
			
				
	
	
	
		
			1.0 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.0 KiB
		
	
	
	
	
	
	
	
id, challengeType, title
| id | challengeType | title | 
|---|---|---|
| 5900f4181000cf542c50ff2a | 5 | Problem 171: Finding numbers for which the sum of the squares of the digits is a square | 
Description
Instructions
Tests
tests:
  - text: <code>euler171()</code> should return 142989277.
    testString: assert.strictEqual(euler171(), 142989277, '<code>euler171()</code> should return 142989277.');
Challenge Seed
function euler171() {
  // Good luck!
  return true;
}
euler171();
Solution
// solution required