* fix: clean-up Project Euler 221-240 * fix: corrections from review Co-authored-by: Tom <20648924+moT01@users.noreply.github.com> Co-authored-by: Tom <20648924+moT01@users.noreply.github.com>
1.1 KiB
1.1 KiB
id, title, challengeType, forumTopicId, dashedName
id | title | challengeType | forumTopicId | dashedName |
---|---|---|---|---|
5900f4591000cf542c50ff6c | Problem 237: Tours on a 4 x n playing board | 5 | 301882 | problem-237-tours-on-a-4-x-n-playing-board |
--description--
Let T(n)
be the number of tours over a 4 × n
playing board such that:
- The tour starts in the top left corner.
- The tour consists of moves that are up, down, left, or right one square.
- The tour visits each square exactly once.
- The tour ends in the bottom left corner.
The diagram shows one tour over a 4 × 10 board:

T(10)
is 2329. What is T({10}^{12})
modulo {10}^8
?
--hints--
toursOnPlayingBoard()
should return 15836928
.
assert.strictEqual(toursOnPlayingBoard(), 15836928);
--seed--
--seed-contents--
function toursOnPlayingBoard() {
return true;
}
toursOnPlayingBoard();
--solutions--
// solution required