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>
886 B
886 B
id, challengeType, isHidden, title, forumTopicId
id | challengeType | isHidden | title | forumTopicId |
---|---|---|---|---|
5900f40d1000cf542c50ff1f | 5 | false | Problem 160: Factorial trailing digits | 301794 |
Description
Instructions
Tests
tests:
- text: <code>euler160()</code> should return 16576.
testString: assert.strictEqual(euler160(), 16576);
Challenge Seed
function euler160() {
// Good luck!
return true;
}
euler160();
Solution
// solution required