--- id: 5900f47f1000cf542c50ff91 challengeType: 5 title: 'Problem 274: Divisibility Multipliers' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler274(), 1601912348822, "euler274() should return 1601912348822.");' ```
## Challenge Seed
```js function euler274() { // Good luck! return true; } euler274(); ```
## Solution
```js // solution required ```