Files
freeCodeCamp/curriculum/challenges/spanish/08-coding-interview-prep/project-euler/problem-95-amicable-chains.spanish.md

55 lines
672 B
Markdown
Raw Normal View History

---
2018-10-10 16:20:40 -04:00
id: 5900f3cc1000cf542c50fede
challengeType: 5
title: 'Problem 95: Amicable chains'
2018-10-10 16:20:40 -04:00
videoUrl: ''
localeTitle: 'Problema 95: Cadenas amigables.'
---
## Description
2018-10-10 16:20:40 -04:00
undefined
## Instructions
2018-10-10 16:20:40 -04:00
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler95()</code> debe devolver 14316.
testString: 'assert.strictEqual(euler95(), 14316, "<code>euler95()</code> should return 14316.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler95() {
// Good luck!
return true;
}
euler95();
2018-10-10 16:20:40 -04:00
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>