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>
995 B
995 B
id, challengeType, isHidden, title, forumTopicId
id | challengeType | isHidden | title | forumTopicId |
---|---|---|---|---|
5900f3e71000cf542c50fefa | 5 | false | Problem 123: Prime square remainders | 301750 |
Description
Instructions
Tests
tests:
- text: <code>euler123()</code> should return 21035.
testString: assert.strictEqual(euler123(), 21035);
Challenge Seed
function euler123() {
// Good luck!
return true;
}
euler123();
Solution
// solution required