---
id: 5900f38e1000cf542c50fea1
challengeType: 5
title: 'Problem 34: Digit factorials'
videoUrl: ''
localeTitle: 'Problema 34: Fatoriais de Dígito'
---
## Description
145 é um número curioso, como 1! + 4! + 5! = 1 + 24 + 120 = 145. Encontre os números e a soma dos números que são iguais à soma do fatorial de seus dígitos. Nota: como 1! = 1 e 2! = 2 não são somas que não estão incluídas.
## Instructions
## Tests
```yml
tests:
- text: 'digitFactorial() deve retornar {sum: 40730, números: [145, 40585]}.'
testString: 'assert.deepEqual(digitFactorial(), { sum: 40730, numbers: [145, 40585] }, "digitFactorial() should return { sum: 40730, numbers: [145, 40585] }.");'
```
## Challenge Seed
```js
function digitFactorial() {
// Good luck!
var sum = 0;
var numbers = [];
return { sum, numbers };
}
digitFactorial();
```