freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-329-prime-frog.arab...

55 lines
642 B
Markdown

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