freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-386-maximum-length-...

55 lines
628 B
Markdown

---
id: 5900f4ef1000cf542c510001
challengeType: 5
title: 'Problem 386: Maximum length of an antichain'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler386(), 528755790, "<code>euler386()</code> should return 528755790.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler386() {
// Good luck!
return true;
}
euler386();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>