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