* fix: remove isHidden flag from frontmatter * fix: add isUpcomingChange Co-authored-by: Ahmad Abdolsaheb <ahmad.abdolsaheb@gmail.com> * feat: hide blocks not challenges Co-authored-by: Ahmad Abdolsaheb <ahmad.abdolsaheb@gmail.com> Co-authored-by: Ahmad Abdolsaheb <ahmad.abdolsaheb@gmail.com>
870 B
870 B
id, challengeType, title, forumTopicId
id | challengeType | title | forumTopicId |
---|---|---|---|
5900f40d1000cf542c50ff1f | 5 | 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