freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-349-langtons-ant.ar...

55 lines
629 B
Markdown

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