--- title: 'Abundant, deficient and perfect number classifications' id: 594810f028c0303b75339acd challengeType: 5 videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert(typeof getDPA === "function", "getDPA is a function.");' - text: '' testString: 'assert(Array.isArray(getDPA(100)), "getDPA should return an array.");' - text: '' testString: 'assert(getDPA(100).length === 3, "getDPA return value should have a length of 3.");' - text: '' testString: 'assert.deepEqual(getDPA(20000), solution, "getDPA(20000) should equal [15043, 4, 4953]");' ```
## Challenge Seed
```js function getDPA (num) { // Good luck! } ```
### After Test
```js console.info('after the test'); ```
## Solution
```js // solution required ```