freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-320-factorials-divi...

55 lines
654 B
Markdown
Raw Normal View History

---
id: 5900f4ae1000cf542c50ffbf
challengeType: 5
title: 'Problem 320: Factorials divisible by a huge integer'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler320(), 278157919195482660, "<code>euler320()</code> should return 278157919195482660.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler320() {
// Good luck!
return true;
}
euler320();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>