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 |
---|---|---|---|---|
5900f3ef1000cf542c50ff02 | 5 | false | Problem 131: Prime cube partnership | 301759 |
Description
Instructions
Tests
tests:
- text: <code>euler131()</code> should return 173.
testString: assert.strictEqual(euler131(), 173);
Challenge Seed
function euler131() {
// Good luck!
return true;
}
euler131();
Solution
// solution required