1.3 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.3 KiB
		
	
	
	
	
	
	
	
id, challengeType, title, forumTopicId
| id | challengeType | title | forumTopicId | 
|---|---|---|---|
| 5900f39f1000cf542c50feb2 | 5 | Problem 51: Prime digit replacements | 302162 | 
Description
Instructions
Tests
tests:
  - text: <code>euler51()</code> should return 121313.
    testString: assert.strictEqual(euler51(), 121313);
Challenge Seed
function euler51() {
  // Good luck!
  return true;
}
euler51();
Solution
// solution required