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

55 lines
672 B
Markdown

---
id: 5900f3cc1000cf542c50fede
challengeType: 5
title: 'Problem 95: Amicable chains'
videoUrl: ''
localeTitle: 'Problema 95: Cadenas amigables.'
---
## Description
undefined
## Instructions
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();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>