Files
freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-418-factorisation-triples.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

1.0 KiB
Raw Blame History

id, challengeType, title, videoUrl, localeTitle
id challengeType title videoUrl localeTitle
5900f50f1000cf542c510021 5 Problem 418: Factorisation triples 问题418三重分解

Description

令n为正整数。 在以下情况下整数三元组abc称为n的分解三元组   a·b·c = n。

将fn定义为n的因式分解三元组abc的a + b + c使c / a最小。 可以证明这一三元组是独特的。

例如f165= 19f100100= 142f20= 4034872。

查找f43

Instructions

Tests

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

Challenge Seed

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

euler418();

Solution

// solution required