freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-339-peredur-fab-efr...

55 lines
622 B
Markdown
Raw Normal View History

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