--- id: 5900f4ed1000cf542c50ffff challengeType: 5 title: 'Problem 383: Divisibility comparison between factorials' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions
## Tests
```yml tests: - text: euler383() должен вернуть 22173624649806. testString: 'assert.strictEqual(euler383(), 22173624649806, "euler383() should return 22173624649806.");' ```
## Challenge Seed
```js function euler383() { // Good luck! return true; } euler383(); ```
## Solution
```js // solution required ```