--- id: 5900f53e1000cf542c510051 challengeType: 5 title: 'Problem 466: Distinct terms in a multiplication table' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler466(), 258381958195474750, "euler466() should return 258381958195474750.");' ```
## Challenge Seed
```js function euler466() { // Good luck! return true; } euler466(); ```
## Solution
```js // solution required ```