--- id: 5900f4831000cf542c50ff95 challengeType: 5 title: 'Problem 278: Linear Combinations of Semiprimes' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler278(), 1228215747273908500, "euler278() should return 1228215747273908500.");' ```
## Challenge Seed
```js function euler278() { // Good luck! return true; } euler278(); ```
## Solution
```js // solution required ```