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.0 KiB
1.0 KiB
id, challengeType, isHidden, title, forumTopicId
id | challengeType | isHidden | title | forumTopicId |
---|---|---|---|---|
5900f4591000cf542c50ff6c | 5 | false | Problem 237: Tours on a 4 x n playing board | 301882 |
Description
T(10) is 2329. What is T(1012) modulo 108?
Instructions
Tests
tests:
- text: <code>euler237()</code> should return 15836928.
testString: assert.strictEqual(euler237(), 15836928);
Challenge Seed
function euler237() {
// Good luck!
return true;
}
euler237();
Solution
// solution required