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.2 KiB
1.2 KiB
id, challengeType, isHidden, title, forumTopicId
id | challengeType | isHidden | title | forumTopicId |
---|---|---|---|---|
5900f3ec1000cf542c50fefe | 5 | false | Problem 127: abc-hits | 301754 |
Description
Instructions
Tests
tests:
- text: <code>euler127()</code> should return 18407904.
testString: assert.strictEqual(euler127(), 18407904);
Challenge Seed
function euler127() {
// Good luck!
return true;
}
euler127();
Solution
// solution required