freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-393-migrating-ants....

55 lines
630 B
Markdown
Raw Normal View History

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