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 |
---|---|---|---|---|
5900f4091000cf542c50ff1c | 5 | false | Problem 157: Solving the diophantine equation | 301788 |
Description
Instructions
Tests
tests:
- text: <code>euler157()</code> should return 53490.
testString: assert.strictEqual(euler157(), 53490);
Challenge Seed
function euler157() {
// Good luck!
return true;
}
euler157();
Solution
// solution required