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>
999 B
999 B
id, challengeType, isHidden, title, forumTopicId
id | challengeType | isHidden | title | forumTopicId |
---|---|---|---|---|
5900f5361000cf542c510049 | 5 | false | Problem 458: Permutations of Project | 302132 |
Description
T(7)=77-7!=818503.
Find T(1012). Give the last 9 digits of your answer.
Instructions
Tests
tests:
- text: <code>euler458()</code> should return 423341841.
testString: assert.strictEqual(euler458(), 423341841);
Challenge Seed
function euler458() {
// Good luck!
return true;
}
euler458();
Solution
// solution required