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 |
---|---|---|---|---|
5900f5201000cf542c510032 | 5 | false | Problem 435: Polynomials of Fibonacci numbers | 302106 |
Description
Instructions
Tests
tests:
- text: <code>euler435()</code> should return 252541322550.
testString: assert.strictEqual(euler435(), 252541322550);
Challenge Seed
function euler435() {
// Good luck!
return true;
}
euler435();
Solution
// solution required