freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-355-maximal-coprime...

56 lines
991 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

---
id: 5900f4d01000cf542c50ffe2
challengeType: 5
title: 'Problem 355: Maximal coprime subset'
videoUrl: ''
localeTitle: 问题355最大互质子集
---
## Description
<section id="description">将Con定义为来自{1,2...n}的一组相互共元素的最大可能和。例如Co10是30并且在子集{1,5,7,8,9}上达到最大值。 <p>给出Co30= 193和Co100= 1356。 </p><p>找到Co200000</p></section>
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler355()</code>应返回1726545007。
testString: 'assert.strictEqual(euler355(), 1726545007, "<code>euler355()</code> should return 1726545007.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler355() {
// Good luck!
return true;
}
euler355();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>