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.3 KiB
1.3 KiB
id, challengeType, isHidden, title, forumTopicId
id | challengeType | isHidden | title | forumTopicId |
---|---|---|---|---|
5900f47c1000cf542c50ff8e | 5 | false | Problem 270: Cutting Squares | 301920 |
Description
What is C(30) mod 108 ?
Instructions
Tests
tests:
- text: <code>euler270()</code> should return 82282080.
testString: assert.strictEqual(euler270(), 82282080);
Challenge Seed
function euler270() {
// Good luck!
return true;
}
euler270();
Solution
// solution required