--- id: 5900f4ca1000cf542c50ffdc challengeType: 5 title: 'Problem 349: Langton"s ant' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler349(), 115384615384614940, "euler349() should return 115384615384614940.");' ```
## Challenge Seed
```js function euler349() { // Good luck! return true; } euler349(); ```
## Solution
```js // solution required ```