freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-386-maximum-length-of-an-antichain.md
Oliver Eyton-Williams ee1e8abd87
feat(curriculum): restore seed + solution to Chinese (#40683)
* feat(tools): add seed/solution restore script

* chore(curriculum): remove empty sections' markers

* chore(curriculum): add seed + solution to Chinese

* chore: remove old formatter

* fix: update getChallenges

parse translated challenges separately, without reference to the source

* chore(curriculum): add dashedName to English

* chore(curriculum): add dashedName to Chinese

* refactor: remove unused challenge property 'name'

* fix: relax dashedName requirement

* fix: stray tag

Remove stray `pre` tag from challenge file.

Signed-off-by: nhcarrigan <nhcarrigan@gmail.com>

Co-authored-by: nhcarrigan <nhcarrigan@gmail.com>
2021-01-12 19:31:00 -07:00

47 lines
819 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
id: 5900f4ef1000cf542c510001
title: 问题386反链的最大长度
challengeType: 5
videoUrl: ''
dashedName: problem-386-maximum-length-of-an-antichain
---
# --description--
令n为整数Sn为n的因子集。
如果A仅包含一个元素或者如果A的元素中没有一个除以A的任何其他元素则Sn的子集A被称为Sn的反共。
例如S30= {1,2,3,5,6,10,15,30} {2,5,6}不是S30的反链。 {2,3,5}是S30的反链。
设Nn为Sn的反链的最大长度。
找ΣNn为1≤n≤108
# --hints--
`euler386()`应该返回528755790。
```js
assert.strictEqual(euler386(), 528755790);
```
# --seed--
## --seed-contents--
```js
function euler386() {
return true;
}
euler386();
```
# --solutions--
```js
// solution required
```