freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-237-tours-on-a-4-x-...

55 lines
626 B
Markdown

---
id: 5900f4591000cf542c50ff6c
challengeType: 5
title: 'Problem 237: Tours on a 4 x n playing board'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler237(), 15836928, "<code>euler237()</code> should return 15836928.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler237() {
// Good luck!
return true;
}
euler237();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>