freeCodeCamp/curriculum/challenges/portuguese/08-coding-interview-prep/project-euler/problem-460-an-ant-on-the-m...

56 lines
700 B
Markdown
Raw Normal View History

---
id: 5900f5381000cf542c51004b
challengeType: 5
title: 'Problem 460: An ant on the move'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler460()</code> deve retornar 18.420738199.
testString: 'assert.strictEqual(euler460(), 18.420738199, "<code>euler460()</code> should return 18.420738199.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler460() {
// Good luck!
return true;
}
euler460();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>