freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-454-diophantine-rec...

55 lines
633 B
Markdown

---
id: 5900f5331000cf542c510045
challengeType: 5
title: 'Problem 454: Diophantine reciprocals III'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler454(), 5435004633092, "<code>euler454()</code> should return 5435004633092.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler454() {
// Good luck!
return true;
}
euler454();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>