freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-269-polynomials-wit...

55 lines
654 B
Markdown

---
id: 5900f4791000cf542c50ff8c
challengeType: 5
title: 'Problem 269: Polynomials with at least one integer root'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler269(), 1311109198529286, "<code>euler269()</code> should return 1311109198529286.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler269() {
// Good luck!
return true;
}
euler269();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>