* 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>
1.4 KiB
1.4 KiB
id, challengeType, title, forumTopicId
id | challengeType | title | forumTopicId |
---|---|---|---|
5900f40e1000cf542c50ff21 | 5 | Problem 162: Hexadecimal numbers | 301796 |
Description
Instructions
Tests
tests:
- text: <code>euler162()</code> should return 3D58725572C62302.
testString: assert.strictEqual(euler162(), '3D58725572C62302');
Challenge Seed
function euler162() {
// Good luck!
return true;
}
euler162();
Solution
// solution required