freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/project-euler/problem-438-integer-part-of...

55 lines
773 B
Markdown
Raw Normal View History

---
id: 5900f5231000cf542c510034
challengeType: 5
title: 'Problem 438: Integer part of polynomial equation"s solutions'
videoUrl: ''
localeTitle: 'Задача 438: Целочисленная часть решений полиномиального уравнения'
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler438(), 2046409616809, "<code>euler438()</code> should return 2046409616809.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler438() {
// Good luck!
return true;
}
euler438();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>