Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> Co-authored-by: Kristofer Koishigawa <scissorsneedfoodtoo@gmail.com> Co-authored-by: Beau Carnes <beaucarnes@gmail.com>
994 B
994 B
id, challengeType, isHidden, title, forumTopicId
id | challengeType | isHidden | title | forumTopicId |
---|---|---|---|---|
5900f3e21000cf542c50fef5 | 5 | false | Problem 118: Pandigital prime sets | 301744 |
Description
Instructions
Tests
tests:
- text: <code>euler118()</code> should return 44680.
testString: assert.strictEqual(euler118(), 44680);
Challenge Seed
function euler118() {
// Good luck!
return true;
}
euler118();
Solution
// solution required