1.8 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.8 KiB
		
	
	
	
	
	
	
	
id, challengeType, title, forumTopicId
| id | challengeType | title | forumTopicId | 
|---|---|---|---|
| 5900f54c1000cf542c51005f | 5 | Problem 480: The Last Question | 302158 | 
Description
Instructions
Tests
tests:
  - text: <code>euler480()</code> should return turnthestarson.
    testString: assert.strictEqual(euler480(), turnthestarson);
Challenge Seed
function euler480() {
  // Good luck!
  return true;
}
euler480();
Solution
// solution required