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 |
---|---|---|---|---|
5900f3d51000cf542c50fee6 | 5 | false | Problem 104: Pandigital Fibonacci ends | 301728 |
Description
Instructions
Tests
tests:
- text: <code>euler104()</code> should return 329468.
testString: assert.strictEqual(euler104(), 329468);
Challenge Seed
function euler104() {
// Good luck!
return true;
}
euler104();
Solution
// solution required