freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-254-sums-of-digit-f...

55 lines
630 B
Markdown
Raw Normal View History

---
id: 5900f46b1000cf542c50ff7d
challengeType: 5
title: 'Problem 254: Sums of Digit Factorials'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler254(), 8184523820510, "<code>euler254()</code> should return 8184523820510.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler254() {
// Good luck!
return true;
}
euler254();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>