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.0 KiB
1.0 KiB
id, challengeType, isHidden, title, forumTopicId
id | challengeType | isHidden | title | forumTopicId |
---|---|---|---|---|
5900f3f51000cf542c50ff07 | 5 | false | Problem 136: Singleton difference | 301764 |
Description
Instructions
Tests
tests:
- text: <code>euler136()</code> should return 2544559.
testString: assert.strictEqual(euler136(), 2544559);
Challenge Seed
function euler136() {
// Good luck!
return true;
}
euler136();
Solution
// solution required