--- id: 5900f4e81000cf542c50fffa challengeType: 5 title: 'Problem 379: Least common multiple count' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler379(), 132314136838185, "euler379() should return 132314136838185.");' ```
## Challenge Seed
```js function euler379() { // Good luck! return true; } euler379(); ```
## Solution
```js // solution required ```