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

56 lines
704 B
Markdown
Raw Normal View History

---
id: 5900f3b01000cf542c50fec3
challengeType: 5
title: 'Problem 68: Magic 5-gon ring'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler68()</code> deve retornar 6531031914842725.
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>