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.5 KiB
1.5 KiB
id, challengeType, isHidden, title, forumTopicId
id | challengeType | isHidden | title | forumTopicId |
---|---|---|---|---|
5900f3df1000cf542c50fef1 | 5 | false | Problem 115: Counting block combinations II | 301741 |
Description
Instructions
Tests
tests:
- text: <code>euler115()</code> should return 168.
testString: assert.strictEqual(euler115(), 168);
Challenge Seed
function euler115() {
// Good luck!
return true;
}
euler115();
Solution
// solution required