freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-343-fractional-sequ...

55 lines
636 B
Markdown
Raw Normal View History

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