freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/rosetta-code/abundant-deficient-and-perf...

2.0 KiB
Raw Blame History

title id challengeType videoUrl localeTitle
Abundant, deficient and perfect number classifications 594810f028c0303b75339acd 5 丰富,不足和完善的数字分类

Description

它们根据适当的除数定义了三个正整数分类。

设$ Pn$是n的适当除数的总和其中适当的除数都是n本身以外的正整数。

如果P(n) < n那么n被归类为“缺陷”

如果P(n) === n那么n被归类为“完美”

如果P(n) > n则n被归类为“丰富”

例:

6具有1,2和3的适当除数。

1 + 2 + 3 = 6因此6被归类为完美数字。

实现一个函数计算三个类中每个类中1到20,000包括的整数。以下列格式将结果输出为数组[deficient, perfect, abundant]

Instructions

Tests

tests:
  - text: <code>getDPA</code>是一个功能。
    testString: 'assert(typeof getDPA === "function", "<code>getDPA</code> is a function.");'
  - text: <code>getDPA</code>应该返回一个数组。
    testString: 'assert(Array.isArray(getDPA(100)), "<code>getDPA</code> should return an array.");'
  - text: <code>getDPA</code>返回值的长度应为3。
    testString: 'assert(getDPA(100).length === 3, "<code>getDPA</code> return value should have a length of 3.");'
  - text: '<code>getDPA(20000)</code>应该等于[15043,4,4953]'
    testString: 'assert.deepEqual(getDPA(20000), solution, "<code>getDPA(20000)</code> should equal [15043, 4, 4953]");'

Challenge Seed

function getDPA (num) {
  // Good luck!
}

After Test

console.info('after the test');

Solution

// solution required