freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/project-euler/problem-71-ordered-fraction...

55 lines
662 B
Markdown

---
id: 5900f3b31000cf542c50fec6
challengeType: 5
title: 'Problem 71: Ordered fractions'
videoUrl: ''
localeTitle: 'Задача 71: Упорядоченные фракции'
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler71(), 428570, "<code>euler71()</code> should return 428570.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler71() {
// Good luck!
return true;
}
euler71();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>