Files
freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-432-totient-sum.md
Oliver Eyton-Williams dec409a4bd fix: s/localeTitle/title/g
2020-10-06 23:10:08 +05:30

63 lines
822 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: 5900f51e1000cf542c510030
challengeType: 5
videoUrl: ''
title: 问题432欧拉
---
## Description
<section id="description">
令Snm= ∑φn×i且1≤i≤m。 (φ是欧拉的上位函数)
给出S510510,106= 45480596821125120。
找出S510510,1011
输入答案的最后9位数字。
</section>
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler432()</code>应该返回754862080。
testString: assert.strictEqual(euler432(), 754862080);
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler432() {
// Good luck!
return true;
}
euler432();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
/section>