Files
freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-432-totient-sum.chinese.md
Kristofer Koishigawa b3213fc892 fix(i18n): chinese test suite (#38220)
* fix: Chinese test suite

Add localeTiltes, descriptions, and adjust test text and testStrings to get the automated test suite working.

* fix: ran script, updated testStrings and solutions
2020-03-03 18:49:47 +05:30

862 B
Raw Blame History

id, challengeType, title, videoUrl, localeTitle
id challengeType title videoUrl localeTitle
5900f51e1000cf542c510030 5 Problem 432: Totient sum 问题432欧拉

Description

令Snm= ∑φn×i且1≤i≤m。 (φ是欧拉的上位函数) 给出S510510,106= 45480596821125120。

找出S510510,1011。 输入答案的最后9位数字。

Instructions

Tests

tests:
  - text: <code>euler432()</code>应该返回754862080。
    testString: assert.strictEqual(euler432(), 754862080);

Challenge Seed

function euler432() {
  // Good luck!
  return true;
}

euler432();

Solution

// solution required