--- id: 5900f52c1000cf542c51003f challengeType: 5 title: 'Problem 448: Average least common multiple' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler448(), 106467648, "euler448() should return 106467648.");' ```
## Challenge Seed
```js function euler448() { // Good luck! return true; } euler448(); ```
## Solution
```js // solution required ```