freeCodeCamp/curriculum/challenges/spanish/08-coding-interview-prep/project-euler/problem-99-largest-exponent...

56 lines
703 B
Markdown
Raw Normal View History

---
2018-10-10 20:20:40 +00:00
id: 5900f3d01000cf542c50fee2
challengeType: 5
title: 'Problem 99: Largest exponential'
2018-10-10 20:20:40 +00:00
videoUrl: ''
localeTitle: 'Problema 99: exponencial mas grande'
---
## Description
2018-10-10 20:20:40 +00:00
undefined
## Instructions
2018-10-10 20:20:40 +00:00
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler99()</code> debe devolver 709.
testString: 'assert.strictEqual(euler99(), 709, "<code>euler99()</code> should return 709.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler99() {
// Good luck!
return true;
}
euler99();
2018-10-10 20:20:40 +00:00
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>