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.3 KiB
1.3 KiB
id, challengeType, isHidden, title, forumTopicId
id | challengeType | isHidden | title | forumTopicId |
---|---|---|---|---|
5900f4201000cf542c50ff33 | 5 | false | Problem 180: Rational zeros of a function of three variables | 301816 |
Description
Instructions
Tests
tests:
- text: <code>euler180()</code> should return 285196020571078980.
testString: assert.strictEqual(euler180(), 285196020571078980);
Challenge Seed
function euler180() {
// Good luck!
return true;
}
euler180();
Solution
// solution required