1.1 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.1 KiB
		
	
	
	
	
	
	
	
id, challengeType, title, forumTopicId
| id | challengeType | title | forumTopicId | 
|---|---|---|---|
| 5900f3bc1000cf542c50fecf | 5 | Problem 80: Square root digital expansion | 302194 | 
Description
Instructions
Tests
tests:
  - text: <code>euler80()</code> should return 40886.
    testString: assert.strictEqual(euler80(), 40886);
Challenge Seed
function euler80() {
  // Good luck!
  return true;
}
euler80();
Solution
// solution required