freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-468-smooth-divisors...

55 lines
638 B
Markdown

---
id: 5900f5411000cf542c510054
challengeType: 5
title: 'Problem 468: Smooth divisors of binomial coefficients'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler468(), 852950321, "<code>euler468()</code> should return 852950321.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler468() {
// Good luck!
return true;
}
euler468();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>