freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-159-digital-root-su...

1.5 KiB
Raw Blame History

id challengeType title videoUrl localeTitle
5900f40c1000cf542c50ff1e 5 Problem 159: Digital root sums of factorisations 问题159因子的数字根和

Description

复合数可以通过许多不同的方式考虑。例如不包括乘以一24可以用7种不同的方式考虑

24 = 2x2x2x3 24 = 2x3x4 24 = 2x2x6 24 = 4x6 24 = 3x8 24 = 2x12 24 = 24

回想一下基数为10的数字的数字根是通过将该数字的数字加在一起而得到的并重复该过程直到到达的数字小于10.因此467的数字根是8。应将数字根和DRS称为我们数字的各个因子的数字根的总和。下图显示了所有DRS值24.因子分解数字根Sum2x2x2x3 92x3x4 92x2x6 104x6 103x8 112x12 524 6 24的最大数字根和为11.函数mdrsn给出n的最大数字根和。所以mdrs24= 11。找到Σmdrsn为1 <n <1,000,000。

Instructions

Tests

tests:
  - text: <code>euler159()</code>应返回14489159。
    testString: 'assert.strictEqual(euler159(), 14489159, "<code>euler159()</code> should return 14489159.");'

Challenge Seed

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

euler159();

Solution

// solution required