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>
1.2 KiB
1.2 KiB
id, challengeType, isHidden, title, forumTopicId
id | challengeType | isHidden | title | forumTopicId |
---|---|---|---|---|
5900f3f21000cf542c50ff05 | 5 | false | Problem 134: Prime pair connection | 301762 |
Description
Instructions
Tests
tests:
- text: <code>euler134()</code> should return 18613426663617120.
testString: assert.strictEqual(euler134(), 18613426663617120);
Challenge Seed
function euler134() {
// Good luck!
return true;
}
euler134();
Solution
// solution required