freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-466-distinct-terms-...

55 lines
656 B
Markdown

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