freeCodeCamp/curriculum/challenges/spanish/08-coding-interview-prep/project-euler/problem-461-almost-pi.spani...

56 lines
703 B
Markdown

---
id: 5900f53a1000cf542c51004c
challengeType: 5
title: 'Problem 461: Almost Pi'
videoUrl: ''
localeTitle: 'Problema 461: Casi Pi'
---
## Description
undefined
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler461()</code> debe devolver 159820276.
testString: 'assert.strictEqual(euler461(), 159820276, "<code>euler461()</code> should return 159820276.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler461() {
// Good luck!
return true;
}
euler461();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>