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 |
---|---|---|---|---|
5900f52c1000cf542c51003d | 5 | false | Problem 446: Retractions B | 302118 |
Description
Find F(107) (mod 1 000 000 007)
Instructions
Tests
tests:
- text: <code>euler446()</code> should return 907803852.
testString: assert.strictEqual(euler446(), 907803852);
Challenge Seed
function euler446() {
// Good luck!
return true;
}
euler446();
Solution
// solution required