Files
freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-132-large-repunit-factors.chinese.md
Oliver Eyton-Williams 61460c8601 fix: insert blank line after ```
search and replace ```\n< with ```\n\n< to ensure there's an empty line
before closing tags
2020-08-16 04:45:20 +05:30

923 B
Raw Blame History

id, challengeType, title, videoUrl, localeTitle
id challengeType title videoUrl localeTitle
5900f3f11000cf542c50ff03 5 Problem 132: Large repunit factors 问题132大的重新安置因素

Description

完全由1组成的数字称为repunit。我们将Rk定义为长度k的重新定位。例如R10= 1111111111 = 11×41×271×9091并且这些素因子的总和是9414.求出R109的前40个素因子的总和。

Instructions

Tests

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

Challenge Seed

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

euler132();

Solution

// solution required

/section>