freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-68-magic-5-gon-ring...

55 lines
623 B
Markdown
Raw Normal View History

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